forked from aniani/vim
Updated runtime files. Remove version checks for Vim older than 6.0.
This commit is contained in:
@@ -4,11 +4,8 @@
|
||||
" URL: http://www.mggen.com/vim/syntax/winbatch.zip
|
||||
" Last change: 2001 May 10
|
||||
|
||||
" For version 5.x: Clear all syntax items
|
||||
" For version 6.x: Quit when a syntax file was already loaded
|
||||
if version < 600
|
||||
syntax clear
|
||||
elseif exists("b:current_syntax")
|
||||
" quit when a syntax file was already loaded
|
||||
if exists("b:current_syntax")
|
||||
finish
|
||||
endif
|
||||
|
||||
@@ -158,29 +155,21 @@ syn keyword winbatchImplicit xgetchildhwnd xgetelapsed xhex xmemcompact xmessage
|
||||
syn keyword winbatchImplicit xsendmessage xverifyccard yield
|
||||
|
||||
" Define the default highlighting.
|
||||
" For version 5.7 and earlier: only when not done already
|
||||
" For version 5.8 and later: only when an item doesn't have highlighting yet
|
||||
if version >= 508 || !exists("did_winbatch_syntax_inits")
|
||||
if version < 508
|
||||
let did_winbatch_syntax_inits = 1
|
||||
command -nargs=+ HiLink hi link <args>
|
||||
else
|
||||
command -nargs=+ HiLink hi def link <args>
|
||||
endif
|
||||
" Only when an item doesn't have highlighting yet
|
||||
command -nargs=+ HiLink hi def link <args>
|
||||
|
||||
HiLink winbatchLabel PreProc
|
||||
HiLink winbatchCtl Operator
|
||||
HiLink winbatchStatement Statement
|
||||
HiLink winbatchTodo Todo
|
||||
HiLink winbatchString String
|
||||
HiLink winbatchVar Type
|
||||
HiLink winbatchComment Comment
|
||||
HiLink winbatchImplicit Special
|
||||
HiLink winbatchNumber Number
|
||||
HiLink winbatchConstant StorageClass
|
||||
HiLink winbatchLabel PreProc
|
||||
HiLink winbatchCtl Operator
|
||||
HiLink winbatchStatement Statement
|
||||
HiLink winbatchTodo Todo
|
||||
HiLink winbatchString String
|
||||
HiLink winbatchVar Type
|
||||
HiLink winbatchComment Comment
|
||||
HiLink winbatchImplicit Special
|
||||
HiLink winbatchNumber Number
|
||||
HiLink winbatchConstant StorageClass
|
||||
|
||||
delcommand HiLink
|
||||
endif
|
||||
delcommand HiLink
|
||||
|
||||
let b:current_syntax = "winbatch"
|
||||
|
||||
|
Reference in New Issue
Block a user