comparison runtime/syntax/help.vim @ 5340:22da5ab9aaa1

Updated runtime files.
author Bram Moolenaar <bram@vim.org>
date Thu, 05 Sep 2013 22:13:31 +0200
parents f7add3891e95
children d7d7bac1a163
comparison
equal deleted inserted replaced
5339:a00302b18c60 5340:22da5ab9aaa1
1 " Vim syntax file 1 " Vim syntax file
2 " Language: Vim help file 2 " Language: Vim help file
3 " Maintainer: Bram Moolenaar (Bram@vim.org) 3 " Maintainer: Bram Moolenaar (Bram@vim.org)
4 " Last Change: 2013 Jul 07 4 " Last Change: 2013 Sep 05
5 5
6 " Quit when a (custom) syntax file was already loaded 6 " Quit when a (custom) syntax file was already loaded
7 if exists("b:current_syntax") 7 if exists("b:current_syntax")
8 finish 8 finish
9 endif 9 endif
42 syn match helpNormal ":|vim:|" " for :help modeline 42 syn match helpNormal ":|vim:|" " for :help modeline
43 syn match helpVim "Vim version [0-9.a-z]\+" 43 syn match helpVim "Vim version [0-9.a-z]\+"
44 syn match helpVim "VIM REFERENCE.*" 44 syn match helpVim "VIM REFERENCE.*"
45 syn match helpOption "'[a-z]\{2,\}'" 45 syn match helpOption "'[a-z]\{2,\}'"
46 syn match helpOption "'t_..'" 46 syn match helpOption "'t_..'"
47 syn match helpCommand "`[^` ]\+`"hs=s+1,he=e-1 contains=helpBacktick 47 syn match helpCommand "`[^` \t]\+`"hs=s+1,he=e-1 contains=helpBacktick
48 syn match helpHeader "\s*\zs.\{-}\ze\s\=\~$" nextgroup=helpIgnore 48 syn match helpHeader "\s*\zs.\{-}\ze\s\=\~$" nextgroup=helpIgnore
49 syn match helpGraphic ".* \ze`$" nextgroup=helpIgnore 49 syn match helpGraphic ".* \ze`$" nextgroup=helpIgnore
50 if has("conceal") 50 if has("conceal")
51 syn match helpIgnore "." contained conceal 51 syn match helpIgnore "." contained conceal
52 else 52 else