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/pcap.vim | |
parent | c628fdcd46e93c308f742efdf54248695960e290 (diff) | |
download | vim-git-f37506f60f87d52a9e8850e30067645e2b13783c.tar.gz |
Updated runtime files. Remove HiLink commands.
Diffstat (limited to 'runtime/syntax/pcap.vim')
-rw-r--r-- | runtime/syntax/pcap.vim | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/runtime/syntax/pcap.vim b/runtime/syntax/pcap.vim index 7c9773852..e0eed633c 100644 --- a/runtime/syntax/pcap.vim +++ b/runtime/syntax/pcap.vim @@ -37,13 +37,11 @@ syn sync minlines=50 " Define the default highlighting. " Only when an item doesn't have highlighting yet -command -nargs=+ HiLink hi def link <args> -HiLink pcapBad WarningMsg -HiLink pcapBadword WarningMsg -HiLink pcapComment Comment +hi def link pcapBad WarningMsg +hi def link pcapBadword WarningMsg +hi def link pcapComment Comment -delcommand HiLink let b:current_syntax = "pcap" |