summaryrefslogtreecommitdiff
path: root/runtime/syntax/obj.vim
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/syntax/obj.vim')
-rw-r--r--runtime/syntax/obj.vim28
1 files changed, 13 insertions, 15 deletions
diff --git a/runtime/syntax/obj.vim b/runtime/syntax/obj.vim
index f2cd8a47a..df4dbca5d 100644
--- a/runtime/syntax/obj.vim
+++ b/runtime/syntax/obj.vim
@@ -60,25 +60,23 @@ syn match objIndex "\d\+\/\d*\/\d*"
" Define the default highlighting.
" Only when an item doesn't have highlighting yet
-command -nargs=+ HiLink hi def link <args>
-HiLink objError Error
-HiLink objComment Comment
-HiLink objInclude PreProc
-HiLink objFloat Float
-HiLink objInt Number
-HiLink objGroup Structure
-HiLink objIndex Constant
-HiLink objMaterial Label
+hi def link objError Error
+hi def link objComment Comment
+hi def link objInclude PreProc
+hi def link objFloat Float
+hi def link objInt Number
+hi def link objGroup Structure
+hi def link objIndex Constant
+hi def link objMaterial Label
-HiLink objVertex Keyword
-HiLink objNormale Keyword
-HiLink objVertice Keyword
-HiLink objFace Keyword
-HiLink objKeywords Keyword
+hi def link objVertex Keyword
+hi def link objNormale Keyword
+hi def link objVertice Keyword
+hi def link objFace Keyword
+hi def link objKeywords Keyword
-delcommand HiLink
let b:current_syntax = "obj"