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/cynlib.vim | |
parent | c628fdcd46e93c308f742efdf54248695960e290 (diff) | |
download | vim-git-f37506f60f87d52a9e8850e30067645e2b13783c.tar.gz |
Updated runtime files. Remove HiLink commands.
Diffstat (limited to 'runtime/syntax/cynlib.vim')
-rw-r--r-- | runtime/syntax/cynlib.vim | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/runtime/syntax/cynlib.vim b/runtime/syntax/cynlib.vim index 5338c613d..24ad2a2e3 100644 --- a/runtime/syntax/cynlib.vim +++ b/runtime/syntax/cynlib.vim @@ -63,14 +63,12 @@ syn keyword cynlibType In Out InST OutST Int Uint Const Cynclock " Define the default highlighting. " Only when an item doesn't have highlighting yet -command -nargs=+ HiLink hi def link <args> -HiLink cynlibOperator Operator -HiLink cynlibMacro Statement -HiLink cynlibFunction Statement -HiLink cynlibppMacro Statement -HiLink cynlibType Type +hi def link cynlibOperator Operator +hi def link cynlibMacro Statement +hi def link cynlibFunction Statement +hi def link cynlibppMacro Statement +hi def link cynlibType Type -delcommand HiLink let b:current_syntax = "cynlib" |