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/m4.vim | |
parent | c628fdcd46e93c308f742efdf54248695960e290 (diff) | |
download | vim-f37506f60f87d52a9e8850e30067645e2b13783c.zip |
Updated runtime files. Remove HiLink commands.
Diffstat (limited to 'runtime/syntax/m4.vim')
-rw-r--r-- | runtime/syntax/m4.vim | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/runtime/syntax/m4.vim b/runtime/syntax/m4.vim index 832540526..6f229ea1a 100644 --- a/runtime/syntax/m4.vim +++ b/runtime/syntax/m4.vim @@ -37,21 +37,19 @@ syn cluster m4Top contains=m4Comment,m4Constants,m4Special,m4Variable,m4Stri " Define the default highlighting. " Only when an item doesn't have highlighting yet -command -nargs=+ HiLink hi def link <args> -HiLink m4Delimiter Delimiter -HiLink m4Comment Comment -HiLink m4Function Function -HiLink m4Keyword Keyword -HiLink m4Special Special -HiLink m4String String -HiLink m4Statement Statement -HiLink m4Preproc PreProc -HiLink m4Type Type -HiLink m4Special Special -HiLink m4Variable Special -HiLink m4Constants Constant -HiLink m4Builtin Statement -delcommand HiLink +hi def link m4Delimiter Delimiter +hi def link m4Comment Comment +hi def link m4Function Function +hi def link m4Keyword Keyword +hi def link m4Special Special +hi def link m4String String +hi def link m4Statement Statement +hi def link m4Preproc PreProc +hi def link m4Type Type +hi def link m4Special Special +hi def link m4Variable Special +hi def link m4Constants Constant +hi def link m4Builtin Statement let b:current_syntax = "m4" |