comparison runtime/syntax/dcd.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
36 " Comment 36 " Comment
37 syn region dcdComment start="\*" end="\;" 37 syn region dcdComment start="\*" end="\;"
38 38
39 " Define the default highlighting. 39 " Define the default highlighting.
40 " Only when an item doesn't have highlighting yet 40 " Only when an item doesn't have highlighting yet
41 command -nargs=+ HiLink hi def link <args>
42 41
43 HiLink dcdFunction Identifier 42 hi def link dcdFunction Identifier
44 HiLink dcdLabel Constant 43 hi def link dcdLabel Constant
45 HiLink dcdConditional Conditional 44 hi def link dcdConditional Conditional
46 HiLink dcdDisplay Type 45 hi def link dcdDisplay Type
47 HiLink dcdStatement Statement 46 hi def link dcdStatement Statement
48 HiLink dcdSpecial Special 47 hi def link dcdSpecial Special
49 HiLink dcdComment Comment 48 hi def link dcdComment Comment
50 49
51 delcommand HiLink
52 50
53 let b:current_syntax = "dcd" 51 let b:current_syntax = "dcd"