summaryrefslogtreecommitdiff
path: root/runtime/syntax/modsim3.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-31 22:22:10 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-31 22:22:10 +0200
commitf37506f60f87d52a9e8850e30067645e2b13783c (patch)
treea11d81f91e6ccb82f9ccdde6ad426ffbbaf3940f /runtime/syntax/modsim3.vim
parentc628fdcd46e93c308f742efdf54248695960e290 (diff)
downloadvim-git-f37506f60f87d52a9e8850e30067645e2b13783c.tar.gz
Updated runtime files. Remove HiLink commands.
Diffstat (limited to 'runtime/syntax/modsim3.vim')
-rw-r--r--runtime/syntax/modsim3.vim26
1 files changed, 12 insertions, 14 deletions
diff --git a/runtime/syntax/modsim3.vim b/runtime/syntax/modsim3.vim
index ba1963b69..ce3503340 100644
--- a/runtime/syntax/modsim3.vim
+++ b/runtime/syntax/modsim3.vim
@@ -76,22 +76,20 @@ syn match modsim3Literal "'[^']'\|''''"
" Define the default highlighting.
" Only when an item doesn't have highlighting yet
-command -nargs=+ HiLink hi def link <args>
" The default methods for highlighting. Can be overridden later
-HiLink modsim3Keyword Statement
-HiLink modsim3Block Statement
-HiLink modsim3Comment1 Comment
-HiLink modsim3Comment2 Comment
-HiLink modsim3String String
-HiLink modsim3Literal Character
-HiLink modsim3Include Statement
-HiLink modsim3Type Type
-HiLink modsim3ParenError Error
-HiLink modsim3Builtin Function
-HiLink modsim3BuiltinNoParen Function
-
-delcommand HiLink
+hi def link modsim3Keyword Statement
+hi def link modsim3Block Statement
+hi def link modsim3Comment1 Comment
+hi def link modsim3Comment2 Comment
+hi def link modsim3String String
+hi def link modsim3Literal Character
+hi def link modsim3Include Statement
+hi def link modsim3Type Type
+hi def link modsim3ParenError Error
+hi def link modsim3Builtin Function
+hi def link modsim3BuiltinNoParen Function
+
let b:current_syntax = "modsim3"