summaryrefslogtreecommitdiffstats
path: root/runtime/syntax
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-04-06 20:21:51 +0000
committerBram Moolenaar <Bram@vim.org>2006-04-06 20:21:51 +0000
commit7b89edc62ddb12b74276567087f58fc015c1f8a0 (patch)
tree2cbaed44d36d343304a289ddfd3cd6d196143832 /runtime/syntax
parent8dff818edfb61658b94128111234c3c074c1cadc (diff)
updated for version 7.0c11v7.0c11
Diffstat (limited to 'runtime/syntax')
-rw-r--r--runtime/syntax/help.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/syntax/help.vim b/runtime/syntax/help.vim
index a24455a17e..c511a58e47 100644
--- a/runtime/syntax/help.vim
+++ b/runtime/syntax/help.vim
@@ -1,14 +1,14 @@
" Vim syntax file
" Language: Vim help file
" Maintainer: Bram Moolenaar (Bram@vim.org)
-" Last Change: 2006 Mar 29
+" Last Change: 2006 Apr 06
" Quit when a (custom) syntax file was already loaded
if exists("b:current_syntax")
finish
endif
-syn match helpHeadline "^[-A-Z ]\+[ \t]\+\*"me=e-1
+syn match helpHeadline "^[-A-Z .]\+[ \t]\+\*"me=e-1
syn match helpSectionDelim "^=\{3,}.*===$"
syn match helpSectionDelim "^-\{3,}.*--$"
syn region helpExample matchgroup=helpIgnore start=" >$" start="^>$" end="^[^ \t]"me=e-1 end="^<"