summaryrefslogtreecommitdiff
path: root/runtime/syntax/vsejcl.vim
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/syntax/vsejcl.vim')
-rw-r--r--runtime/syntax/vsejcl.vim16
1 files changed, 7 insertions, 9 deletions
diff --git a/runtime/syntax/vsejcl.vim b/runtime/syntax/vsejcl.vim
index 5a106c2ef..f32983623 100644
--- a/runtime/syntax/vsejcl.vim
+++ b/runtime/syntax/vsejcl.vim
@@ -21,17 +21,15 @@ syn match vsejclParms /(.\{-})/ contained
" Define the default highlighting.
" Only when an item doesn't have highlighting yet
-command -nargs=+ HiLink hi def link <args>
-HiLink vsejclComment Comment
-HiLink vsejclField Type
-HiLink vsejclKeyword Statement
-HiLink vsejclObject Constant
-HiLink vsejclString Constant
-HiLink vsejclMisc Special
-HiLink vsejclParms Constant
+hi def link vsejclComment Comment
+hi def link vsejclField Type
+hi def link vsejclKeyword Statement
+hi def link vsejclObject Constant
+hi def link vsejclString Constant
+hi def link vsejclMisc Special
+hi def link vsejclParms Constant
-delcommand HiLink
let b:current_syntax = "vsejcl"