diff options
Diffstat (limited to 'runtime/syntax/ch.vim')
-rw-r--r-- | runtime/syntax/ch.vim | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/runtime/syntax/ch.vim b/runtime/syntax/ch.vim index 05a1fcbdd..61f475bc9 100644 --- a/runtime/syntax/ch.vim +++ b/runtime/syntax/ch.vim @@ -26,14 +26,12 @@ syn keyword chStructure class syn keyword chType string_t array " Default highlighting -command -nargs=+ HiLink hi def link <args> - -HiLink chAccess chStatement -HiLink chExceptions Exception -HiLink chStatement Statement -HiLink chType Type -HiLink chStructure Structure -delcommand HiLink + +hi def link chAccess chStatement +hi def link chExceptions Exception +hi def link chStatement Statement +hi def link chType Type +hi def link chStructure Structure let b:current_syntax = "ch" |