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/tli.vim | |
parent | c628fdcd46e93c308f742efdf54248695960e290 (diff) | |
download | vim-git-f37506f60f87d52a9e8850e30067645e2b13783c.tar.gz |
Updated runtime files. Remove HiLink commands.
Diffstat (limited to 'runtime/syntax/tli.vim')
-rw-r--r-- | runtime/syntax/tli.vim | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/runtime/syntax/tli.vim b/runtime/syntax/tli.vim index e0e19ab98..b96d4a211 100644 --- a/runtime/syntax/tli.vim +++ b/runtime/syntax/tli.vim @@ -42,18 +42,16 @@ syn case match " Define the default highlighting. " Only when an item doesn't have highlighting yet -command -nargs=+ HiLink hi def link <args> - -HiLink tliNumber Number -HiLink tliString String -HiLink tliComment Comment -HiLink tliSpecial SpecialChar -HiLink tliIdentifier Identifier -HiLink tliObject Statement -HiLink tliField Type -HiLink tliStyle PreProc - -delcommand HiLink + +hi def link tliNumber Number +hi def link tliString String +hi def link tliComment Comment +hi def link tliSpecial SpecialChar +hi def link tliIdentifier Identifier +hi def link tliObject Statement +hi def link tliField Type +hi def link tliStyle PreProc + let b:current_syntax = "tli" |