summaryrefslogtreecommitdiff
path: root/runtime/syntax/tli.vim
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/syntax/tli.vim')
-rw-r--r--runtime/syntax/tli.vim22
1 files changed, 10 insertions, 12 deletions
diff --git a/runtime/syntax/tli.vim b/runtime/syntax/tli.vim
index e0e19ab98..b96d4a211 100644
--- a/runtime/syntax/tli.vim
+++ b/runtime/syntax/tli.vim
@@ -42,18 +42,16 @@ syn case match
" Define the default highlighting.
" Only when an item doesn't have highlighting yet
-command -nargs=+ HiLink hi def link <args>
-
-HiLink tliNumber Number
-HiLink tliString String
-HiLink tliComment Comment
-HiLink tliSpecial SpecialChar
-HiLink tliIdentifier Identifier
-HiLink tliObject Statement
-HiLink tliField Type
-HiLink tliStyle PreProc
-
-delcommand HiLink
+
+hi def link tliNumber Number
+hi def link tliString String
+hi def link tliComment Comment
+hi def link tliSpecial SpecialChar
+hi def link tliIdentifier Identifier
+hi def link tliObject Statement
+hi def link tliField Type
+hi def link tliStyle PreProc
+
let b:current_syntax = "tli"