summaryrefslogtreecommitdiff
path: root/runtime/syntax/abaqus.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-31 22:22:10 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-31 22:22:10 +0200
commitf37506f60f87d52a9e8850e30067645e2b13783c (patch)
treea11d81f91e6ccb82f9ccdde6ad426ffbbaf3940f /runtime/syntax/abaqus.vim
parentc628fdcd46e93c308f742efdf54248695960e290 (diff)
downloadvim-git-f37506f60f87d52a9e8850e30067645e2b13783c.tar.gz
Updated runtime files. Remove HiLink commands.
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 ddf025584..db2717f81 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"