comparison runtime/syntax/texmf.vim @ 10051:46763b01cd9a

commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 31 22:22:10 2016 +0200 Updated runtime files. Remove HiLink commands.
author Christian Brabandt <cb@256bit.org>
date Wed, 31 Aug 2016 22:30:08 +0200
parents 43efa4f5a8ea
children
comparison
equal deleted inserted replaced
10050:b702edc4b2b8 10051:46763b01cd9a
40 " Catch errors caused by wrong parenthesization 40 " Catch errors caused by wrong parenthesization
41 syn region texmfBrace matchgroup=texmfBraceBrace start="{" end="}" contains=ALLBUT,texmfTodo,texmfBraceError,texmfLHSVariable,texmfLHSDot transparent 41 syn region texmfBrace matchgroup=texmfBraceBrace start="{" end="}" contains=ALLBUT,texmfTodo,texmfBraceError,texmfLHSVariable,texmfLHSDot transparent
42 syn match texmfBraceError "}" 42 syn match texmfBraceError "}"
43 43
44 " Define the default highlighting 44 " Define the default highlighting
45 command -nargs=+ HiLink hi def link <args>
46 45
47 HiLink texmfComment Comment 46 hi def link texmfComment Comment
48 HiLink texmfTodo Todo 47 hi def link texmfTodo Todo
49 48
50 HiLink texmfPassedParameter texmfVariable 49 hi def link texmfPassedParameter texmfVariable
51 HiLink texmfVariable Identifier 50 hi def link texmfVariable Identifier
52 51
53 HiLink texmfNumber Number 52 hi def link texmfNumber Number
54 HiLink texmfString String 53 hi def link texmfString String
55 54
56 HiLink texmfLHSStart texmfLHS 55 hi def link texmfLHSStart texmfLHS
57 HiLink texmfLHSVariable texmfLHS 56 hi def link texmfLHSVariable texmfLHS
58 HiLink texmfLHSDot texmfLHS 57 hi def link texmfLHSDot texmfLHS
59 HiLink texmfLHS Type 58 hi def link texmfLHS Type
60 59
61 HiLink texmfEquals Normal 60 hi def link texmfEquals Normal
62 61
63 HiLink texmfBraceBrace texmfDelimiter 62 hi def link texmfBraceBrace texmfDelimiter
64 HiLink texmfComma texmfDelimiter 63 hi def link texmfComma texmfDelimiter
65 HiLink texmfColons texmfDelimiter 64 hi def link texmfColons texmfDelimiter
66 HiLink texmfDelimiter Preproc 65 hi def link texmfDelimiter Preproc
67 66
68 HiLink texmfDoubleExclam Statement 67 hi def link texmfDoubleExclam Statement
69 HiLink texmfSpecial Special 68 hi def link texmfSpecial Special
70 69
71 HiLink texmfBraceError texmfError 70 hi def link texmfBraceError texmfError
72 HiLink texmfError Error 71 hi def link texmfError Error
73 72
74 delcommand HiLink
75 73
76 let b:current_syntax = "texmf" 74 let b:current_syntax = "texmf"