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/ampl.vim | |
parent | c628fdcd46e93c308f742efdf54248695960e290 (diff) | |
download | vim-f37506f60f87d52a9e8850e30067645e2b13783c.zip |
Updated runtime files. Remove HiLink commands.
Diffstat (limited to 'runtime/syntax/ampl.vim')
-rw-r--r-- | runtime/syntax/ampl.vim | 34 |
1 files changed, 16 insertions, 18 deletions
diff --git a/runtime/syntax/ampl.vim b/runtime/syntax/ampl.vim index 99a683a0f..ad78f7d72 100644 --- a/runtime/syntax/ampl.vim +++ b/runtime/syntax/ampl.vim @@ -114,26 +114,24 @@ syn keyword amplTodo contained TODO FIXME XXX -command -nargs=+ HiLink hi def link <args> " The default methods for highlighting. Can be overridden later. -HiLink amplEntityKeyword Keyword -HiLink amplType Type -HiLink amplStatement Statement -HiLink amplOperators Operator -HiLink amplBasicOperators Operator -HiLink amplConditional Conditional -HiLink amplRepeat Repeat -HiLink amplStrings String -HiLink amplNumerics Number -HiLink amplSetFunction Function -HiLink amplBuiltInFunction Function -HiLink amplRandomGenerator Function -HiLink amplComment Comment -HiLink amplDotSuffix Special -HiLink amplPiecewise Special - -delcommand HiLink +hi def link amplEntityKeyword Keyword +hi def link amplType Type +hi def link amplStatement Statement +hi def link amplOperators Operator +hi def link amplBasicOperators Operator +hi def link amplConditional Conditional +hi def link amplRepeat Repeat +hi def link amplStrings String +hi def link amplNumerics Number +hi def link amplSetFunction Function +hi def link amplBuiltInFunction Function +hi def link amplRandomGenerator Function +hi def link amplComment Comment +hi def link amplDotSuffix Special +hi def link amplPiecewise Special + let b:current_syntax = "ampl" |