comparison runtime/syntax/rexx.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
240 " always scan from start, PCs have long become to be powerful enough for that 240 " always scan from start, PCs have long become to be powerful enough for that
241 exec "syn sync fromstart" 241 exec "syn sync fromstart"
242 242
243 " Define the default highlighting. 243 " Define the default highlighting.
244 " Only when an item doesn't have highlighting yet 244 " Only when an item doesn't have highlighting yet
245 command -nargs=+ HiLink hi def link <args>
246 245
247 " make binary and hex strings stand out 246 " make binary and hex strings stand out
248 hi rexxStringConstant term=bold,underline ctermfg=5 cterm=bold guifg=darkMagenta gui=bold 247 hi rexxStringConstant term=bold,underline ctermfg=5 cterm=bold guifg=darkMagenta gui=bold
249 248
250 HiLink rexxLabel2 Function 249 hi def link rexxLabel2 Function
251 HiLink doLoopSelectLabelRegion rexxKeyword 250 hi def link doLoopSelectLabelRegion rexxKeyword
252 HiLink endIterateLeaveLabelRegion rexxKeyword 251 hi def link endIterateLeaveLabelRegion rexxKeyword
253 HiLink rexxLoopKeywords rexxKeyword " Todo 252 hi def link rexxLoopKeywords rexxKeyword " Todo
254 253
255 HiLink rexxNumber Normal "DiffChange 254 hi def link rexxNumber Normal "DiffChange
256 " HiLink rexxIdentifier DiffChange 255 " hi def link rexxIdentifier DiffChange
257 256
258 HiLink rexxRegularCallSignal Statement 257 hi def link rexxRegularCallSignal Statement
259 HiLink rexxExceptionHandling Statement 258 hi def link rexxExceptionHandling Statement
260 259
261 HiLink rexxLabel Function 260 hi def link rexxLabel Function
262 HiLink rexxCharacter Character 261 hi def link rexxCharacter Character
263 HiLink rexxParenError rexxError 262 hi def link rexxParenError rexxError
264 HiLink rexxInParen rexxError 263 hi def link rexxInParen rexxError
265 HiLink rexxCommentError rexxError 264 hi def link rexxCommentError rexxError
266 HiLink rexxError Error 265 hi def link rexxError Error
267 HiLink rexxKeyword Statement 266 hi def link rexxKeyword Statement
268 HiLink rexxKeywordStatements Statement 267 hi def link rexxKeywordStatements Statement
269 268
270 HiLink rexxFunction Function 269 hi def link rexxFunction Function
271 HiLink rexxString String 270 hi def link rexxString String
272 HiLink rexxComment Comment 271 hi def link rexxComment Comment
273 HiLink rexxTodo Todo 272 hi def link rexxTodo Todo
274 HiLink rexxSpecialVariable Special 273 hi def link rexxSpecialVariable Special
275 HiLink rexxConditional rexxKeyword 274 hi def link rexxConditional rexxKeyword
276 275
277 HiLink rexxOperator Operator 276 hi def link rexxOperator Operator
278 HiLink rexxMessageOperator rexxOperator 277 hi def link rexxMessageOperator rexxOperator
279 HiLink rexxLineComment Comment 278 hi def link rexxLineComment Comment
280 279
281 HiLink rexxLineContinue WildMenu 280 hi def link rexxLineContinue WildMenu
282 281
283 HiLink rexxDirective rexxKeyword 282 hi def link rexxDirective rexxKeyword
284 HiLink rexxClassDirective Type 283 hi def link rexxClassDirective Type
285 HiLink rexxMethodDirective rexxFunction 284 hi def link rexxMethodDirective rexxFunction
286 HiLink rexxAttributeDirective rexxFunction 285 hi def link rexxAttributeDirective rexxFunction
287 HiLink rexxRequiresDirective Include 286 hi def link rexxRequiresDirective Include
288 HiLink rexxRoutineDirective rexxFunction 287 hi def link rexxRoutineDirective rexxFunction
289 288
290 " rgf, 2012-09-09 289 " rgf, 2012-09-09
291 HiLink rexxOptionsDirective rexxFunction 290 hi def link rexxOptionsDirective rexxFunction
292 HiLink rexxOptionsDirective2 rexxOptionsDirective 291 hi def link rexxOptionsDirective2 rexxOptionsDirective
293 HiLink rexxOptionsDirective3 Normal " rexxOptionsDirective 292 hi def link rexxOptionsDirective3 Normal " rexxOptionsDirective
294 293
295 HiLink rexxConstantDirective rexxFunction 294 hi def link rexxConstantDirective rexxFunction
296 295
297 HiLink rexxConst Constant 296 hi def link rexxConst Constant
298 HiLink rexxTypeSpecifier Type 297 hi def link rexxTypeSpecifier Type
299 HiLink rexxBuiltinClass rexxTypeSpecifier 298 hi def link rexxBuiltinClass rexxTypeSpecifier
300 299
301 HiLink rexxEnvironmentSymbol rexxConst 300 hi def link rexxEnvironmentSymbol rexxConst
302 HiLink rexxMessage rexxFunction 301 hi def link rexxMessage rexxFunction
303 302
304 HiLink rexxParse rexxKeyword 303 hi def link rexxParse rexxKeyword
305 HiLink rexxParse2 rexxParse 304 hi def link rexxParse2 rexxParse
306 305
307 HiLink rexxGuard rexxKeyword 306 hi def link rexxGuard rexxKeyword
308 HiLink rexxTrace rexxKeyword 307 hi def link rexxTrace rexxKeyword
309 308
310 HiLink rexxRaise rexxKeyword 309 hi def link rexxRaise rexxKeyword
311 HiLink rexxRaise2 rexxRaise 310 hi def link rexxRaise2 rexxRaise
312 311
313 HiLink rexxForward rexxKeyword 312 hi def link rexxForward rexxKeyword
314 HiLink rexxForward2 rexxForward 313 hi def link rexxForward2 rexxForward
315 314
316 delcommand HiLink
317 315
318 let b:current_syntax = "rexx" 316 let b:current_syntax = "rexx"
319 317
320 "vim: ts=8 318 "vim: ts=8