diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-08-31 22:22:10 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-08-31 22:22:10 +0200 |
commit | f37506f60f87d52a9e8850e30067645e2b13783c (patch) | |
tree | a11d81f91e6ccb82f9ccdde6ad426ffbbaf3940f /runtime/syntax/mupad.vim | |
parent | c628fdcd46e93c308f742efdf54248695960e290 (diff) | |
download | vim-git-f37506f60f87d52a9e8850e30067645e2b13783c.tar.gz |
Updated runtime files. Remove HiLink commands.
Diffstat (limited to 'runtime/syntax/mupad.vim')
-rw-r--r-- | runtime/syntax/mupad.vim | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/runtime/syntax/mupad.vim b/runtime/syntax/mupad.vim index 7f981f0b7..55ea9c4e4 100644 --- a/runtime/syntax/mupad.vim +++ b/runtime/syntax/mupad.vim @@ -265,21 +265,19 @@ syn keyword mupadIdentifier Tubular " graphics meta-documentation Attributes syn keyword mupadIdentifier objectGroupsListed -command -nargs=+ HiLink hi def link <args> -HiLink mupadComment Comment -HiLink mupadString String -HiLink mupadOperator Operator -HiLink mupadSpecial Special -HiLink mupadStatement Statement -HiLink mupadUnderlined Underlined -HiLink mupadConditional Conditional -HiLink mupadRepeat Repeat -HiLink mupadFunction Function -HiLink mupadType Type -HiLink mupadDefine Define -HiLink mupadIdentifier Identifier +hi def link mupadComment Comment +hi def link mupadString String +hi def link mupadOperator Operator +hi def link mupadSpecial Special +hi def link mupadStatement Statement +hi def link mupadUnderlined Underlined +hi def link mupadConditional Conditional +hi def link mupadRepeat Repeat +hi def link mupadFunction Function +hi def link mupadType Type +hi def link mupadDefine Define +hi def link mupadIdentifier Identifier -delcommand HiLink " TODO More comprehensive listing. |