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/xpm.vim | |
parent | c628fdcd46e93c308f742efdf54248695960e290 (diff) | |
download | vim-git-f37506f60f87d52a9e8850e30067645e2b13783c.tar.gz |
Updated runtime files. Remove HiLink commands.
Diffstat (limited to 'runtime/syntax/xpm.vim')
-rw-r--r-- | runtime/syntax/xpm.vim | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/runtime/syntax/xpm.vim b/runtime/syntax/xpm.vim index 8cc92a118..2021c3a96 100644 --- a/runtime/syntax/xpm.vim +++ b/runtime/syntax/xpm.vim @@ -124,15 +124,13 @@ endif " has("gui_running") " Define the default highlighting. " Only when an item doesn't have highlighting yet -command -nargs=+ HiLink hi def link <args> -HiLink xpmType Type -HiLink xpmStorageClass StorageClass -HiLink xpmTodo Todo -HiLink xpmComment Comment -HiLink xpmPixelString String +hi def link xpmType Type +hi def link xpmStorageClass StorageClass +hi def link xpmTodo Todo +hi def link xpmComment Comment +hi def link xpmPixelString String -delcommand HiLink let b:current_syntax = "xpm" |