Mercurial > vim
annotate runtime/syntax/manual.vim @ 13768:bcef80912112 v8.0.1756
patch 8.0.1756: GUI: after prompting for a number the mouse shape is wrong
commit https://github.com/vim/vim/commit/73658317bacd9a0264dfaa32288de6ea1f236fe5
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Apr 24 17:41:57 2018 +0200
patch 8.0.1756: GUI: after prompting for a number the mouse shape is wrong
Problem: GUI: after prompting for a number the mouse shape is sometimes
wrong.
Solution: Call setmouse() after setting "State". (Hirohito Higashi,
closes #2709)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 24 Apr 2018 17:45:08 +0200 |
parents | 895150cd3e6f |
children | 4027cefc2aab |
rev | line source |
---|---|
7 | 1 " Vim syntax support file |
2 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
7879
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
1619
diff
changeset
|
3 " Last Change: 2016 Feb 01 |
7 | 4 |
5 " This file is used for ":syntax manual". | |
6 " It installs the Syntax autocommands, but no the FileType autocommands. | |
7 | |
8 if !has("syntax") | |
9 finish | |
10 endif | |
11 | |
12 " Load the Syntax autocommands and set the default methods for highlighting. | |
13 if !exists("syntax_on") | |
14 so <sfile>:p:h/synload.vim | |
15 endif | |
16 | |
17 let syntax_manual = 1 | |
18 | |
7879
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
1619
diff
changeset
|
19 " Overrule the connection between FileType and Syntax autocommands. This sets |
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
1619
diff
changeset
|
20 " the syntax when the file type is detected, without changing the value. |
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
1619
diff
changeset
|
21 augroup syntaxset |
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
1619
diff
changeset
|
22 au! FileType * exe "set syntax=" . &syntax |
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
1619
diff
changeset
|
23 augroup END |
7 | 24 |
25 " If the GUI is already running, may still need to install the FileType menu. | |
1619 | 26 " Don't do it when the 'M' flag is included in 'guioptions'. |
27 if has("menu") && has("gui_running") && !exists("did_install_syntax_menu") && &guioptions !~# 'M' | |
7 | 28 source $VIMRUNTIME/menu.vim |
29 endif |