comparison runtime/syntax/csp.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
145 145
146 syn sync lines=250 146 syn sync lines=250
147 147
148 " Define the default highlighting. 148 " Define the default highlighting.
149 " Only when an item doesn't have highlighting yet 149 " Only when an item doesn't have highlighting yet
150 command -nargs=+ HiLink hi def link <args>
151 150
152 " The default methods for highlighting. Can be overridden later 151 " The default methods for highlighting. Can be overridden later
153 " (For vim version <=5.7, the command groups are defined in 152 " (For vim version <=5.7, the command groups are defined in
154 " $VIMRUNTIME/syntax/synload.vim ) 153 " $VIMRUNTIME/syntax/synload.vim )
155 HiLink cspComment Comment 154 hi def link cspComment Comment
156 HiLink cspNumber Number 155 hi def link cspNumber Number
157 HiLink cspConditional Conditional 156 hi def link cspConditional Conditional
158 HiLink cspOperator Delimiter 157 hi def link cspOperator Delimiter
159 HiLink cspKeyword Keyword 158 hi def link cspKeyword Keyword
160 HiLink cspReserved SpecialChar 159 hi def link cspReserved SpecialChar
161 HiLink cspInclude Error 160 hi def link cspInclude Error
162 HiLink cspIncludeKeyword Include 161 hi def link cspIncludeKeyword Include
163 HiLink cspIncludeArg Include 162 hi def link cspIncludeArg Include
164 HiLink cspAssert PreCondit 163 hi def link cspAssert PreCondit
165 HiLink cspType Type 164 hi def link cspType Type
166 HiLink cspProcess Function 165 hi def link cspProcess Function
167 HiLink cspTodo Todo 166 hi def link cspTodo Todo
168 HiLink cspOldRttComment Define 167 hi def link cspOldRttComment Define
169 HiLink cspRttPragmaKeyword Define 168 hi def link cspRttPragmaKeyword Define
170 HiLink cspSdlRttComment Define 169 hi def link cspSdlRttComment Define
171 HiLink cspRttPragmaArg Define 170 hi def link cspRttPragmaArg Define
172 HiLink cspRttPragmaSdlArg Define 171 hi def link cspRttPragmaSdlArg Define
173 HiLink cspRttPragmaSdlName Default 172 hi def link cspRttPragmaSdlName Default
174 HiLink cspRttPragmaSdlTailArg Define 173 hi def link cspRttPragmaSdlTailArg Define
175 HiLink cspRttPragmaSdlTransName Default 174 hi def link cspRttPragmaSdlTransName Default
176 HiLink cspRttPragmaSdlTransTailArg Define 175 hi def link cspRttPragmaSdlTransTailArg Define
177 HiLink cspReservedIdentifier Error 176 hi def link cspReservedIdentifier Error
178 " (Currently unused vim method: Debug) 177 " (Currently unused vim method: Debug)
179 178
180 delcommand HiLink
181 179
182 let b:current_syntax = "csp" 180 let b:current_syntax = "csp"
183 181
184 " vim: ts=8 182 " vim: ts=8