Mercurial > vim
annotate runtime/syntax/manual.vim @ 33529:6d7a054bf2e3 v9.0.2013
patch 9.0.2013: Unicode tables outdated
Commit: https://github.com/vim/vim/commit/a634b92b969e1bcb47551a39bf4e11e41ba9aa17
Author: Christian Brabandt <cb@256bit.org>
Date: Wed Oct 11 21:24:49 2023 +0200
patch 9.0.2013: Unicode tables outdated
Problem: Unicode tables outdated
Solution: Update Unicode tables to v15.1 (released 23.09.2023)
closes: #13311
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 11 Oct 2023 21:30:09 +0200 |
parents | 4027cefc2aab |
children |
rev | line source |
---|---|
7 | 1 " Vim syntax support file |
32770
4027cefc2aab
Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents:
7879
diff
changeset
|
2 " Maintainer: The Vim Project <https://github.com/vim/vim> |
4027cefc2aab
Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents:
7879
diff
changeset
|
3 " Last Change: 2023 Aug 10 |
4027cefc2aab
Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents:
7879
diff
changeset
|
4 " Former Maintainer: Bram Moolenaar <Bram@vim.org> |
7 | 5 |
6 " This file is used for ":syntax manual". | |
7 " It installs the Syntax autocommands, but no the FileType autocommands. | |
8 | |
9 if !has("syntax") | |
10 finish | |
11 endif | |
12 | |
13 " Load the Syntax autocommands and set the default methods for highlighting. | |
14 if !exists("syntax_on") | |
15 so <sfile>:p:h/synload.vim | |
16 endif | |
17 | |
18 let syntax_manual = 1 | |
19 | |
7879
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
1619
diff
changeset
|
20 " 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
|
21 " 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
|
22 augroup syntaxset |
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
1619
diff
changeset
|
23 au! FileType * exe "set syntax=" . &syntax |
895150cd3e6f
commit https://github.com/vim/vim/commit/885f24fbcae2a39ae496ffb3a1e139379be8fae1
Christian Brabandt <cb@256bit.org>
parents:
1619
diff
changeset
|
24 augroup END |
7 | 25 |
26 " If the GUI is already running, may still need to install the FileType menu. | |
1619 | 27 " Don't do it when the 'M' flag is included in 'guioptions'. |
28 if has("menu") && has("gui_running") && !exists("did_install_syntax_menu") && &guioptions !~# 'M' | |
7 | 29 source $VIMRUNTIME/menu.vim |
30 endif |