diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-28 21:14:34 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-28 21:25:15 +0200 |
commit | 86b596dc7a49f1b148ef82a356b972b93ed0f6d4 (patch) | |
tree | 3c20d0b13ed7e6db8cff6b50f1ee201b0330aab2 /runtime/syntax/pfmain.vim | |
parent | a53409b564458f7a94c8fcd0725d1953dee58dce (diff) | |
download | rneovim-86b596dc7a49f1b148ef82a356b972b93ed0f6d4.tar.gz rneovim-86b596dc7a49f1b148ef82a356b972b93ed0f6d4.tar.bz2 rneovim-86b596dc7a49f1b148ef82a356b972b93ed0f6d4.zip |
vim-patch:f37506f60f87
Updated runtime files. Remove HiLink commands.
https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Diffstat (limited to 'runtime/syntax/pfmain.vim')
-rw-r--r-- | runtime/syntax/pfmain.vim | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/runtime/syntax/pfmain.vim b/runtime/syntax/pfmain.vim index 794aa5dc23..af58da70ef 100644 --- a/runtime/syntax/pfmain.vim +++ b/runtime/syntax/pfmain.vim @@ -1811,26 +1811,24 @@ syntax match pfmainSpecial "\<smtpd\>" syntax match pfmainSpecial "\<trace\>" syntax match pfmainSpecial "\<verify\>" -command -nargs=+ HiLink hi def link <args> -HiLink pfmainConf Statement -HiLink pfmainRef PreProc -HiLink pfmainWord identifier +hi def link pfmainConf Statement +hi def link pfmainRef PreProc +hi def link pfmainWord identifier -HiLink pfmainDict Type -HiLink pfmainQueueDir Constant -HiLink pfmainTransport Constant -HiLink pfmainLock Constant -HiLink pfmainAnswer Constant +hi def link pfmainDict Type +hi def link pfmainQueueDir Constant +hi def link pfmainTransport Constant +hi def link pfmainLock Constant +hi def link pfmainAnswer Constant -HiLink pfmainComment Comment -HiLink pfmainNumber Number -HiLink pfmainTime Number -HiLink pfmainIP Number -HiLink pfmainVariable Error -HiLink pfmainSpecial Special +hi def link pfmainComment Comment +hi def link pfmainNumber Number +hi def link pfmainTime Number +hi def link pfmainIP Number +hi def link pfmainVariable Error +hi def link pfmainSpecial Special -delcommand HiLink let b:current_syntax = "pfmain" |