summaryrefslogtreecommitdiffstats
path: root/runtime/syntax/cheetah.vim
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/syntax/cheetah.vim')
-rw-r--r--runtime/syntax/cheetah.vim14
1 files changed, 6 insertions, 8 deletions
diff --git a/runtime/syntax/cheetah.vim b/runtime/syntax/cheetah.vim
index c1860def3c..9567ecbbca 100644
--- a/runtime/syntax/cheetah.vim
+++ b/runtime/syntax/cheetah.vim
@@ -34,16 +34,14 @@ syn region cheetahMultiLineComment start="#\*" end="\*#"
" Define the default highlighting.
" Only when an item doesn't have highlighting yet
-command -nargs=+ HiLink hi def link <args>
-HiLink cheetahPlaceHolder Identifier
-HiLink cheetahDirective PreCondit
-HiLink cheetahKeyword Define
-HiLink cheetahContinuation Special
-HiLink cheetahComment Comment
-HiLink cheetahMultiLineComment Comment
+hi def link cheetahPlaceHolder Identifier
+hi def link cheetahDirective PreCondit
+hi def link cheetahKeyword Define
+hi def link cheetahContinuation Special
+hi def link cheetahComment Comment
+hi def link cheetahMultiLineComment Comment
-delcommand HiLink
let b:current_syntax = "cheetah"