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/nqc.vim | |
parent | c628fdcd46e93c308f742efdf54248695960e290 (diff) | |
download | vim-git-f37506f60f87d52a9e8850e30067645e2b13783c.tar.gz |
Updated runtime files. Remove HiLink commands.
Diffstat (limited to 'runtime/syntax/nqc.vim')
-rw-r--r-- | runtime/syntax/nqc.vim | 68 |
1 files changed, 33 insertions, 35 deletions
diff --git a/runtime/syntax/nqc.vim b/runtime/syntax/nqc.vim index 910570524..d09c106f9 100644 --- a/runtime/syntax/nqc.vim +++ b/runtime/syntax/nqc.vim @@ -324,43 +324,41 @@ exec "syn sync ccomment nqcComment minlines=" . nqc_minlines " Define the default highlighting. " Only when an item doesn't have highlighting yet -command -nargs=+ HiLink hi def link <args> " The default methods for highlighting. Can be overridden later -HiLink nqcLabel Label -HiLink nqcConditional Conditional -HiLink nqcRepeat Repeat -HiLink nqcCharacter Character -HiLink nqcNumber Number -HiLink nqcFloat Float -HiLink nqcFunction Function -HiLink nqcParenError nqcError -HiLink nqcErrInParen nqcError -HiLink nqcErrInBracket nqcError -HiLink nqcCommentL nqcComment -HiLink nqcCommentStart nqcComment -HiLink nqcCommentError nqcError -HiLink nqcCommentStartError nqcError -HiLink nqcSpaceError nqcError -HiLink nqcStorageClass StorageClass -HiLink nqcInclude Include -HiLink nqcPreProc PreProc -HiLink nqcDefine Macro -HiLink nqcIncluded String -HiLink nqcError Error -HiLink nqcStatement Statement -HiLink nqcEvents Statement -HiLink nqcPreCondit PreCondit -HiLink nqcType Type -HiLink nqcConstant Constant -HiLink nqcCommentSkip nqcComment -HiLink nqcComment Comment -HiLink nqcTodo Todo -HiLink nqcCppSkip nqcCppOut -HiLink nqcCppOut2 nqcCppOut -HiLink nqcCppOut Comment - -delcommand HiLink +hi def link nqcLabel Label +hi def link nqcConditional Conditional +hi def link nqcRepeat Repeat +hi def link nqcCharacter Character +hi def link nqcNumber Number +hi def link nqcFloat Float +hi def link nqcFunction Function +hi def link nqcParenError nqcError +hi def link nqcErrInParen nqcError +hi def link nqcErrInBracket nqcError +hi def link nqcCommentL nqcComment +hi def link nqcCommentStart nqcComment +hi def link nqcCommentError nqcError +hi def link nqcCommentStartError nqcError +hi def link nqcSpaceError nqcError +hi def link nqcStorageClass StorageClass +hi def link nqcInclude Include +hi def link nqcPreProc PreProc +hi def link nqcDefine Macro +hi def link nqcIncluded String +hi def link nqcError Error +hi def link nqcStatement Statement +hi def link nqcEvents Statement +hi def link nqcPreCondit PreCondit +hi def link nqcType Type +hi def link nqcConstant Constant +hi def link nqcCommentSkip nqcComment +hi def link nqcComment Comment +hi def link nqcTodo Todo +hi def link nqcCppSkip nqcCppOut +hi def link nqcCppOut2 nqcCppOut +hi def link nqcCppOut Comment + let b:current_syntax = "nqc" |