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/pic.vim | |
parent | c628fdcd46e93c308f742efdf54248695960e290 (diff) | |
download | vim-git-f37506f60f87d52a9e8850e30067645e2b13783c.tar.gz |
Updated runtime files. Remove HiLink commands.
Diffstat (limited to 'runtime/syntax/pic.vim')
-rw-r--r-- | runtime/syntax/pic.vim | 30 |
1 files changed, 14 insertions, 16 deletions
diff --git a/runtime/syntax/pic.vim b/runtime/syntax/pic.vim index b98984ed3..bcb01f4db 100644 --- a/runtime/syntax/pic.vim +++ b/runtime/syntax/pic.vim @@ -89,27 +89,25 @@ syn match picDirective "#\=DEFINE" " Define the default highlighting. " Only when an item doesn't have highlighting yet -command -nargs=+ HiLink hi def link <args> -HiLink picTodo Todo -HiLink picComment Comment -HiLink picDirective Statement -HiLink picLabel Label -HiLink picString String +hi def link picTodo Todo +hi def link picComment Comment +hi def link picDirective Statement +hi def link picLabel Label +hi def link picString String -"HiLink picOpcode Keyword -"HiLink picRegister Structure -"HiLink picRegisterPart Special +"hi def link picOpcode Keyword +"hi def link picRegister Structure +"hi def link picRegisterPart Special -HiLink picASCII String -HiLink picBinary Number -HiLink picDecimal Number -HiLink picHexadecimal Number -HiLink picOctal Number +hi def link picASCII String +hi def link picBinary Number +hi def link picDecimal Number +hi def link picHexadecimal Number +hi def link picOctal Number -HiLink picIdentifier Identifier +hi def link picIdentifier Identifier -delcommand HiLink let b:current_syntax = "pic" |