aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/csc.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-04-28 21:14:34 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-04-28 21:25:15 +0200
commit86b596dc7a49f1b148ef82a356b972b93ed0f6d4 (patch)
tree3c20d0b13ed7e6db8cff6b50f1ee201b0330aab2 /runtime/syntax/csc.vim
parenta53409b564458f7a94c8fcd0725d1953dee58dce (diff)
downloadrneovim-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/csc.vim')
-rw-r--r--runtime/syntax/csc.vim50
1 files changed, 24 insertions, 26 deletions
diff --git a/runtime/syntax/csc.vim b/runtime/syntax/csc.vim
index f4ce62c876..6e5d8b9f37 100644
--- a/runtime/syntax/csc.vim
+++ b/runtime/syntax/csc.vim
@@ -156,35 +156,33 @@ exec "sy sync ccomment cscComment minlines=" . csc_minlines
" Define the default highlighting.
" Only when an item doesn't have highlighting yet
-command -nargs=+ HiLink hi def link <args>
hi cscVarName term=bold ctermfg=9 gui=bold guifg=blue
-HiLink cscNumber Number
-HiLink cscOctal Number
-HiLink cscFloat Float
-HiLink cscParenE Error
-HiLink cscCommentE Error
-HiLink cscSpaceE Error
-HiLink cscError Error
-HiLink cscString String
-HiLink cscComment Comment
-HiLink cscTodo Todo
-HiLink cscStatement Statement
-HiLink cscIfError Error
-HiLink cscEqError Error
-HiLink cscFunction Statement
-HiLink cscCondition Statement
-HiLink cscWarn WarningMsg
-
-HiLink cscComE Error
-HiLink cscCom Statement
-HiLink cscComW WarningMsg
-
-HiLink cscBPMacro Identifier
-HiLink cscBPW WarningMsg
-
-delcommand HiLink
+hi def link cscNumber Number
+hi def link cscOctal Number
+hi def link cscFloat Float
+hi def link cscParenE Error
+hi def link cscCommentE Error
+hi def link cscSpaceE Error
+hi def link cscError Error
+hi def link cscString String
+hi def link cscComment Comment
+hi def link cscTodo Todo
+hi def link cscStatement Statement
+hi def link cscIfError Error
+hi def link cscEqError Error
+hi def link cscFunction Statement
+hi def link cscCondition Statement
+hi def link cscWarn WarningMsg
+
+hi def link cscComE Error
+hi def link cscCom Statement
+hi def link cscComW WarningMsg
+
+hi def link cscBPMacro Identifier
+hi def link cscBPW WarningMsg
+
let b:current_syntax = "csc"