summaryrefslogtreecommitdiff
path: root/runtime/syntax/cvs.vim
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/syntax/cvs.vim')
-rw-r--r--runtime/syntax/cvs.vim14
1 files changed, 6 insertions, 8 deletions
diff --git a/runtime/syntax/cvs.vim b/runtime/syntax/cvs.vim
index 4a01c2b8a..3eac19163 100644
--- a/runtime/syntax/cvs.vim
+++ b/runtime/syntax/cvs.vim
@@ -18,15 +18,13 @@ syn match cvsDir contained "\S\+$"
" Define the default highlighting.
" Only when an item doesn't have highlighting yet
-command -nargs=+ HiLink hi def link <args>
-HiLink cvsLine Comment
-HiLink cvsDir cvsFile
-HiLink cvsFile Constant
-HiLink cvsFiles cvsCom
-HiLink cvsTag cvsCom
-HiLink cvsCom Statement
+hi def link cvsLine Comment
+hi def link cvsDir cvsFile
+hi def link cvsFile Constant
+hi def link cvsFiles cvsCom
+hi def link cvsTag cvsCom
+hi def link cvsCom Statement
-delcommand HiLink
let b:current_syntax = "cvs"