comparison runtime/syntax/desc.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
59 syn region descTagRegion start=/^\[\(F\|FLAG\)\]/ end=/$/ contains=descTag,descFlag 59 syn region descTagRegion start=/^\[\(F\|FLAG\)\]/ end=/$/ contains=descTag,descFlag
60 60
61 syn region descTagRegion start=/^\[\(L\|LICENSE\)\]/ end=/$/ contains=descTag,descLicense 61 syn region descTagRegion start=/^\[\(L\|LICENSE\)\]/ end=/$/ contains=descTag,descLicense
62 62
63 " Only when an item doesn't have highlighting yet 63 " Only when an item doesn't have highlighting yet
64 command -nargs=+ HiLink hi def link <args>
65 64
66 HiLink descFlag Identifier 65 hi def link descFlag Identifier
67 HiLink descLicense Identifier 66 hi def link descLicense Identifier
68 HiLink descCategory Identifier 67 hi def link descCategory Identifier
69 68
70 HiLink descTag Type 69 hi def link descTag Type
71 HiLink descUrl Underlined 70 hi def link descUrl Underlined
72 HiLink descEmail Underlined 71 hi def link descEmail Underlined
73 72
74 " priority tag colors 73 " priority tag colors
75 HiLink descInstallX Boolean 74 hi def link descInstallX Boolean
76 HiLink descInstallO Type 75 hi def link descInstallO Type
77 HiLink descDash Operator 76 hi def link descDash Operator
78 HiLink descDigit Number 77 hi def link descDigit Number
79 HiLink descCompilePriority Number 78 hi def link descCompilePriority Number
80 79
81 " download tag colors 80 " download tag colors
82 HiLink descSum Number 81 hi def link descSum Number
83 HiLink descTarball Underlined 82 hi def link descTarball Underlined
84 83
85 " tag region colors 84 " tag region colors
86 HiLink descText Comment 85 hi def link descText Comment
87 86
88 delcommand HiLink
89 87
90 let b:current_syntax = "desc" 88 let b:current_syntax = "desc"