comparison runtime/syntax/ishd.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
383 syn cluster ishdPreProcGroup contains=ishdPreCondit,ishdIncluded,ishdInclude,ishdDefine,ishdHashIf0,ishdHashIf0End,ishdHashIf0Skip,ishdNumber 383 syn cluster ishdPreProcGroup contains=ishdPreCondit,ishdIncluded,ishdInclude,ishdDefine,ishdHashIf0,ishdHashIf0End,ishdHashIf0Skip,ishdNumber
384 syn region ishdDefine start="^\s*#\s*\(define\|undef\)\>" end="$" contains=ALLBUT,@ishdPreProcGroup 384 syn region ishdDefine start="^\s*#\s*\(define\|undef\)\>" end="$" contains=ALLBUT,@ishdPreProcGroup
385 385
386 " Define the default highlighting. 386 " Define the default highlighting.
387 " Only when an item doesn't have highlighting yet 387 " Only when an item doesn't have highlighting yet
388 command -nargs=+ HiLink hi def link <args> 388
389 389 hi def link ishdNumber Number
390 HiLink ishdNumber Number 390 hi def link ishdError Error
391 HiLink ishdError Error 391 hi def link ishdStatement Statement
392 HiLink ishdStatement Statement 392 hi def link ishdString String
393 HiLink ishdString String 393 hi def link ishdComment Comment
394 HiLink ishdComment Comment 394 hi def link ishdTodo Todo
395 HiLink ishdTodo Todo 395 hi def link ishdFunction Identifier
396 HiLink ishdFunction Identifier 396 hi def link ishdConstant PreProc
397 HiLink ishdConstant PreProc 397 hi def link ishdType Type
398 HiLink ishdType Type 398 hi def link ishdInclude Include
399 HiLink ishdInclude Include 399 hi def link ishdDefine Macro
400 HiLink ishdDefine Macro 400 hi def link ishdIncluded String
401 HiLink ishdIncluded String 401 hi def link ishdPreCondit PreCondit
402 HiLink ishdPreCondit PreCondit 402 hi def link ishdHashIf0Skip ishdHashIf0
403 HiLink ishdHashIf0Skip ishdHashIf0 403 hi def link ishdHashIf0End ishdHashIf0
404 HiLink ishdHashIf0End ishdHashIf0 404 hi def link ishdHashIf0 Comment
405 HiLink ishdHashIf0 Comment 405
406
407 delcommand HiLink
408 406
409 let b:current_syntax = "ishd" 407 let b:current_syntax = "ishd"
410 408
411 " vim: ts=8 409 " vim: ts=8