diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-08-31 22:22:10 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-08-31 22:22:10 +0200 |
commit | f37506f60f87d52a9e8850e30067645e2b13783c (patch) | |
tree | a11d81f91e6ccb82f9ccdde6ad426ffbbaf3940f /runtime/syntax/abaqus.vim | |
parent | c628fdcd46e93c308f742efdf54248695960e290 (diff) | |
download | vim-git-f37506f60f87d52a9e8850e30067645e2b13783c.tar.gz |
Updated runtime files. Remove HiLink commands.
Diffstat (limited to 'runtime/syntax/abaqus.vim')
-rw-r--r-- | runtime/syntax/abaqus.vim | 12 |
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" |