0
0
mirror of https://github.com/vim/vim.git synced 2025-10-17 07:44:28 -04:00

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

@@ -152,34 +152,32 @@ syn keyword sqlTodo TODO FIXME XXX DEBUG NOTE
" Define the default highlighting.
" Only when an item doesn't have highlighting yet
command -nargs=+ HiLink hi def link <args>
" === Comment syntax group ===
HiLink sqlComment Comment
hi def link sqlComment Comment
" === Constant syntax group ===
HiLink sqlNumber Number
HiLink sqlBoolean Boolean
HiLink sqlString String
hi def link sqlNumber Number
hi def link sqlBoolean Boolean
hi def link sqlString String
" === Statment syntax group ===
HiLink sqlStatement Statement
HiLink sqlConditional Conditional
HiLink sqlRepeat Repeat
HiLink sqlKeyword Keyword
HiLink sqlOperator Operator
HiLink sqlException Exception
hi def link sqlStatement Statement
hi def link sqlConditional Conditional
hi def link sqlRepeat Repeat
hi def link sqlKeyword Keyword
hi def link sqlOperator Operator
hi def link sqlException Exception
" === Identifier syntax group ===
HiLink sqlFunction Function
hi def link sqlFunction Function
" === Type syntax group ===
HiLink sqlType Type
hi def link sqlType Type
" === Todo syntax group ===
HiLink sqlTodo Todo
hi def link sqlTodo Todo
delcommand HiLink
let b:current_syntax = "sqlinformix"