summaryrefslogtreecommitdiff
path: root/runtime/syntax/dcd.vim
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/syntax/dcd.vim')
-rw-r--r--runtime/syntax/dcd.vim16
1 files changed, 7 insertions, 9 deletions
diff --git a/runtime/syntax/dcd.vim b/runtime/syntax/dcd.vim
index bde1d3d95..058d27237 100644
--- a/runtime/syntax/dcd.vim
+++ b/runtime/syntax/dcd.vim
@@ -38,16 +38,14 @@ syn region dcdComment start="\*" end="\;"
" Define the default highlighting.
" Only when an item doesn't have highlighting yet
-command -nargs=+ HiLink hi def link <args>
-HiLink dcdFunction Identifier
-HiLink dcdLabel Constant
-HiLink dcdConditional Conditional
-HiLink dcdDisplay Type
-HiLink dcdStatement Statement
-HiLink dcdSpecial Special
-HiLink dcdComment Comment
+hi def link dcdFunction Identifier
+hi def link dcdLabel Constant
+hi def link dcdConditional Conditional
+hi def link dcdDisplay Type
+hi def link dcdStatement Statement
+hi def link dcdSpecial Special
+hi def link dcdComment Comment
-delcommand HiLink
let b:current_syntax = "dcd"