1
0
forked from aniani/vim

Updated runtime files. Remove HiLink commands.

This commit is contained in:
Bram Moolenaar
2016-08-31 22:22:10 +02:00
parent c628fdcd46
commit f37506f60f
345 changed files with 8746 additions and 9223 deletions

View File

@@ -32,24 +32,22 @@ syn match straceOperator "[-+=*/!%&|:,]"
syn region straceComment start="/\*" end="\*/" oneline
" Define the default highlighting
command -nargs=+ HiLink hi def link <args>
HiLink straceComment Comment
HiLink straceVerbosed Comment
HiLink stracePID PreProc
HiLink straceNumber Number
HiLink straceNumberRHS Type
HiLink straceOtherRHS Type
HiLink straceString String
HiLink straceConstant Function
HiLink straceEquals Type
HiLink straceSysCallEmbed straceSysCall
HiLink straceSysCall Statement
HiLink straceParenthesis Statement
HiLink straceOperator Normal
HiLink straceSpecialChar Special
HiLink straceOtherPID PreProc
hi def link straceComment Comment
hi def link straceVerbosed Comment
hi def link stracePID PreProc
hi def link straceNumber Number
hi def link straceNumberRHS Type
hi def link straceOtherRHS Type
hi def link straceString String
hi def link straceConstant Function
hi def link straceEquals Type
hi def link straceSysCallEmbed straceSysCall
hi def link straceSysCall Statement
hi def link straceParenthesis Statement
hi def link straceOperator Normal
hi def link straceSpecialChar Special
hi def link straceOtherPID PreProc
delcommand HiLink
let b:current_syntax = "strace"