comparison runtime/syntax/modsim3.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
74 "syn region modsim3Literal start=+'+ end=+'+ 74 "syn region modsim3Literal start=+'+ end=+'+
75 syn match modsim3Literal "'[^']'\|''''" 75 syn match modsim3Literal "'[^']'\|''''"
76 76
77 " Define the default highlighting. 77 " Define the default highlighting.
78 " Only when an item doesn't have highlighting yet 78 " Only when an item doesn't have highlighting yet
79 command -nargs=+ HiLink hi def link <args>
80 79
81 " The default methods for highlighting. Can be overridden later 80 " The default methods for highlighting. Can be overridden later
82 HiLink modsim3Keyword Statement 81 hi def link modsim3Keyword Statement
83 HiLink modsim3Block Statement 82 hi def link modsim3Block Statement
84 HiLink modsim3Comment1 Comment 83 hi def link modsim3Comment1 Comment
85 HiLink modsim3Comment2 Comment 84 hi def link modsim3Comment2 Comment
86 HiLink modsim3String String 85 hi def link modsim3String String
87 HiLink modsim3Literal Character 86 hi def link modsim3Literal Character
88 HiLink modsim3Include Statement 87 hi def link modsim3Include Statement
89 HiLink modsim3Type Type 88 hi def link modsim3Type Type
90 HiLink modsim3ParenError Error 89 hi def link modsim3ParenError Error
91 HiLink modsim3Builtin Function 90 hi def link modsim3Builtin Function
92 HiLink modsim3BuiltinNoParen Function 91 hi def link modsim3BuiltinNoParen Function
93 92
94 delcommand HiLink
95 93
96 let b:current_syntax = "modsim3" 94 let b:current_syntax = "modsim3"
97 95
98 " vim: ts=8 sw=2 96 " vim: ts=8 sw=2
99 97