summaryrefslogtreecommitdiff
path: root/runtime/syntax/prescribe.vim
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/syntax/prescribe.vim')
-rw-r--r--runtime/syntax/prescribe.vim14
1 files changed, 6 insertions, 8 deletions
diff --git a/runtime/syntax/prescribe.vim b/runtime/syntax/prescribe.vim
index 05f9162e4..cd5ddbeed 100644
--- a/runtime/syntax/prescribe.vim
+++ b/runtime/syntax/prescribe.vim
@@ -42,16 +42,14 @@ syn region prescribeComment start=+CMNT+ end=+;+
" Define the default highlighting.
" Only when an item doesn't have highlighting yet
-command -nargs=+ HiLink hi def link <args>
-HiLink prescribeSpecial PreProc
-HiLink prescribeStatement Statement
-HiLink prescribeNumber Number
-HiLink prescribeCSETArg String
-HiLink prescribeFRPOArg String
-HiLink prescribeComment Comment
+hi def link prescribeSpecial PreProc
+hi def link prescribeStatement Statement
+hi def link prescribeNumber Number
+hi def link prescribeCSETArg String
+hi def link prescribeFRPOArg String
+hi def link prescribeComment Comment
-delcommand HiLink
let b:current_syntax = "prescribe"