summaryrefslogtreecommitdiffstats
path: root/runtime/syntax/abaqus.vim
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/syntax/abaqus.vim')
-rw-r--r--runtime/syntax/abaqus.vim12
1 files changed, 5 insertions, 7 deletions
diff --git a/runtime/syntax/abaqus.vim b/runtime/syntax/abaqus.vim
index ddf0255845..db2717f818 100644
--- a/runtime/syntax/abaqus.vim
+++ b/runtime/syntax/abaqus.vim
@@ -23,15 +23,13 @@ syn match abaqusBadLine "^\s\+\*.*" display
" Define the default highlighting.
" Only when an item doesn't have highlighting yet
-command -nargs=+ HiLink hi def link <args>
" The default methods for highlighting. Can be overridden later
-HiLink abaqusComment Comment
-HiLink abaqusKeyword Statement
-HiLink abaqusParameter Identifier
-HiLink abaqusValue Constant
-HiLink abaqusBadLine Error
+hi def link abaqusComment Comment
+hi def link abaqusKeyword Statement
+hi def link abaqusParameter Identifier
+hi def link abaqusValue Constant
+hi def link abaqusBadLine Error
-delcommand HiLink
let b:current_syntax = "abaqus"