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/lua.vim | |
parent | c628fdcd46e93c308f742efdf54248695960e290 (diff) | |
download | vim-git-f37506f60f87d52a9e8850e30067645e2b13783c.tar.gz |
Updated runtime files. Remove HiLink commands.
Diffstat (limited to 'runtime/syntax/lua.vim')
-rw-r--r-- | runtime/syntax/lua.vim | 44 |
1 files changed, 21 insertions, 23 deletions
diff --git a/runtime/syntax/lua.vim b/runtime/syntax/lua.vim index 5ef771bb7..f313c14e7 100644 --- a/runtime/syntax/lua.vim +++ b/runtime/syntax/lua.vim @@ -323,31 +323,29 @@ endif " Define the default highlighting. " Only when an item doesn't have highlighting yet -command -nargs=+ HiLink hi def link <args> -HiLink luaStatement Statement -HiLink luaRepeat Repeat -HiLink luaFor Repeat -HiLink luaString String -HiLink luaString2 String -HiLink luaNumber Number -HiLink luaOperator Operator -HiLink luaIn Operator -HiLink luaConstant Constant -HiLink luaCond Conditional -HiLink luaElse Conditional -HiLink luaFunction Function -HiLink luaComment Comment -HiLink luaTodo Todo -HiLink luaTable Structure -HiLink luaError Error -HiLink luaParenError Error -HiLink luaBraceError Error -HiLink luaSpecial SpecialChar -HiLink luaFunc Identifier -HiLink luaLabel Label +hi def link luaStatement Statement +hi def link luaRepeat Repeat +hi def link luaFor Repeat +hi def link luaString String +hi def link luaString2 String +hi def link luaNumber Number +hi def link luaOperator Operator +hi def link luaIn Operator +hi def link luaConstant Constant +hi def link luaCond Conditional +hi def link luaElse Conditional +hi def link luaFunction Function +hi def link luaComment Comment +hi def link luaTodo Todo +hi def link luaTable Structure +hi def link luaError Error +hi def link luaParenError Error +hi def link luaBraceError Error +hi def link luaSpecial SpecialChar +hi def link luaFunc Identifier +hi def link luaLabel Label -delcommand HiLink let b:current_syntax = "lua" |