summaryrefslogtreecommitdiff
path: root/runtime/syntax/cmake.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-31 22:22:10 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-31 22:22:10 +0200
commitf37506f60f87d52a9e8850e30067645e2b13783c (patch)
treea11d81f91e6ccb82f9ccdde6ad426ffbbaf3940f /runtime/syntax/cmake.vim
parentc628fdcd46e93c308f742efdf54248695960e290 (diff)
downloadvim-git-f37506f60f87d52a9e8850e30067645e2b13783c.tar.gz
Updated runtime files. Remove HiLink commands.
Diffstat (limited to 'runtime/syntax/cmake.vim')
-rw-r--r--runtime/syntax/cmake.vim28
1 files changed, 13 insertions, 15 deletions
diff --git a/runtime/syntax/cmake.vim b/runtime/syntax/cmake.vim
index 8e73e329e..4cc21da8f 100644
--- a/runtime/syntax/cmake.vim
+++ b/runtime/syntax/cmake.vim
@@ -50,23 +50,21 @@ syn keyword cmakeTodo
" Define the default highlighting.
" Only when an item doesn't have highlighting yet
-command -nargs=+ HiLink hi def link <args>
-HiLink cmakeStatement Statement
-HiLink cmakeComment Comment
-HiLink cmakeString String
-HiLink cmakeVariableValue Type
-HiLink cmakeRegistry Underlined
-HiLink cmakeArguments Identifier
-HiLink cmakeArgument Constant
-HiLink cmakeEnvironment Special
-HiLink cmakeOperators Operator
-HiLink cmakeMacro PreProc
-HiLink cmakeError Error
-HiLink cmakeTodo TODO
-HiLink cmakeEscaped Special
+hi def link cmakeStatement Statement
+hi def link cmakeComment Comment
+hi def link cmakeString String
+hi def link cmakeVariableValue Type
+hi def link cmakeRegistry Underlined
+hi def link cmakeArguments Identifier
+hi def link cmakeArgument Constant
+hi def link cmakeEnvironment Special
+hi def link cmakeOperators Operator
+hi def link cmakeMacro PreProc
+hi def link cmakeError Error
+hi def link cmakeTodo TODO
+hi def link cmakeEscaped Special
-delcommand HiLink
let b:current_syntax = "cmake"