diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-07-25 17:49:10 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-07-25 17:49:10 +0200 |
commit | 6c35beaa11d38fc0c37a3d209295772313b12003 (patch) | |
tree | 811b970e87072e1901c554866c161e00064a4784 /runtime/syntax/help.vim | |
parent | 848f87633a4a89311838f0d00e12282f8e2e3003 (diff) | |
download | vim-git-6c35beaa11d38fc0c37a3d209295772313b12003.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/syntax/help.vim')
-rw-r--r-- | runtime/syntax/help.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/syntax/help.vim b/runtime/syntax/help.vim index 8d85d02c8..af97543c3 100644 --- a/runtime/syntax/help.vim +++ b/runtime/syntax/help.vim @@ -1,7 +1,7 @@ " Vim syntax file " Language: Vim help file " Maintainer: Bram Moolenaar (Bram@vim.org) -" Last Change: 2012 May 18 +" Last Change: 2012 Jul 16 " Quit when a (custom) syntax file was already loaded if exists("b:current_syntax") @@ -12,8 +12,8 @@ let s:cpo_save = &cpo set cpo&vim syn match helpHeadline "^[-A-Z .][-A-Z0-9 .()]*[ \t]\+\*"me=e-1 -syn match helpSectionDelim "^=\{3,}.*===$" -syn match helpSectionDelim "^-\{3,}.*--$" +syn match helpSectionDelim "^===.*===$" +syn match helpSectionDelim "^---.*--$" syn region helpExample matchgroup=helpIgnore start=" >$" start="^>$" end="^[^ \t]"me=e-1 end="^<" if has("ebcdic") syn match helpHyperTextJump "\\\@<!|[^"*|]\+|" contains=helpBar |