summaryrefslogtreecommitdiffstats
path: root/runtime/syntax/cfg.vim
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/syntax/cfg.vim')
-rw-r--r--runtime/syntax/cfg.vim20
1 files changed, 9 insertions, 11 deletions
diff --git a/runtime/syntax/cfg.vim b/runtime/syntax/cfg.vim
index c57b6f8711..a50297d418 100644
--- a/runtime/syntax/cfg.vim
+++ b/runtime/syntax/cfg.vim
@@ -34,17 +34,15 @@ syn match CfgComment "\/\/.*"
" Define the default hightlighting.
" Only when an item doesn't have highlighting yet
-command -nargs=+ HiLink hi def link <args>
-HiLink CfgOnOff Label
-HiLink CfgComment Comment
-HiLink CfgSection Type
-HiLink CfgString String
-HiLink CfgParams Keyword
-HiLink CfgValues Constant
-HiLink CfgDirectory Directory
-HiLink UncPath Directory
-
-delcommand HiLink
+hi def link CfgOnOff Label
+hi def link CfgComment Comment
+hi def link CfgSection Type
+hi def link CfgString String
+hi def link CfgParams Keyword
+hi def link CfgValues Constant
+hi def link CfgDirectory Directory
+hi def link UncPath Directory
+
let b:current_syntax = "cfg"
" vim:ts=8