From 86b596dc7a49f1b148ef82a356b972b93ed0f6d4 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Fri, 28 Apr 2017 21:14:34 +0200 Subject: vim-patch:f37506f60f87 Updated runtime files. Remove HiLink commands. https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c --- runtime/syntax/tpp.vim | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) (limited to 'runtime/syntax/tpp.vim') diff --git a/runtime/syntax/tpp.vim b/runtime/syntax/tpp.vim index b1ea35f041..1244b97f08 100644 --- a/runtime/syntax/tpp.vim +++ b/runtime/syntax/tpp.vim @@ -59,26 +59,24 @@ syn match tppComment "^--##.*$" " Define the default highlighting. " Only when an item doesn't have highlighting yet -command -nargs=+ HiLink hi def link -HiLink tppAbstractOptionKey Special -HiLink tppPageLocalOptionKey Keyword -HiLink tppPageLocalSwitchKey Keyword -HiLink tppColorOptionKey Keyword -HiLink tppTimeOptionKey Comment -HiLink tppNewPageOptionKey PreProc -HiLink tppString String -HiLink tppColor String -HiLink tppTime Number -HiLink tppComment Comment -HiLink tppAbstractOption Error -HiLink tppPageLocalOption Error -HiLink tppPageLocalSwitch Error -HiLink tppColorOption Error -HiLink tppNewPageOption Error -HiLink tppTimeOption Error +hi def link tppAbstractOptionKey Special +hi def link tppPageLocalOptionKey Keyword +hi def link tppPageLocalSwitchKey Keyword +hi def link tppColorOptionKey Keyword +hi def link tppTimeOptionKey Comment +hi def link tppNewPageOptionKey PreProc +hi def link tppString String +hi def link tppColor String +hi def link tppTime Number +hi def link tppComment Comment +hi def link tppAbstractOption Error +hi def link tppPageLocalOption Error +hi def link tppPageLocalSwitch Error +hi def link tppColorOption Error +hi def link tppNewPageOption Error +hi def link tppTimeOption Error -delcommand HiLink let b:current_syntax = "tpp" -- cgit