comparison runtime/syntax/asn.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
46 46
47 syn sync ccomment asnComment 47 syn sync ccomment asnComment
48 48
49 " Define the default highlighting. 49 " Define the default highlighting.
50 " Only when an item doesn't have highlighting yet 50 " Only when an item doesn't have highlighting yet
51 command -nargs=+ HiLink hi def link <args> 51 hi def link asnDefinition Function
52 HiLink asnDefinition Function 52 hi def link asnBraces Function
53 HiLink asnBraces Function 53 hi def link asnStructure Statement
54 HiLink asnStructure Statement 54 hi def link asnBoolValue Boolean
55 HiLink asnBoolValue Boolean 55 hi def link asnSpecial Special
56 HiLink asnSpecial Special 56 hi def link asnString String
57 HiLink asnString String 57 hi def link asnCharacter Character
58 HiLink asnCharacter Character 58 hi def link asnSpecialCharacter asnSpecial
59 HiLink asnSpecialCharacter asnSpecial 59 hi def link asnNumber asnValue
60 HiLink asnNumber asnValue 60 hi def link asnComment Comment
61 HiLink asnComment Comment 61 hi def link asnLineComment asnComment
62 HiLink asnLineComment asnComment 62 hi def link asnType Type
63 HiLink asnType Type 63 hi def link asnTypeInfo PreProc
64 HiLink asnTypeInfo PreProc 64 hi def link asnValue Number
65 HiLink asnValue Number 65 hi def link asnExternal Include
66 HiLink asnExternal Include 66 hi def link asnTagModifier Function
67 HiLink asnTagModifier Function 67 hi def link asnFieldOption Type
68 HiLink asnFieldOption Type
69 delcommand HiLink
70 68
71 let &cpo = s:cpo_save 69 let &cpo = s:cpo_save
72 unlet s:cpo_save 70 unlet s:cpo_save
73 let b:current_syntax = "asn" 71 let b:current_syntax = "asn"
74 72