comparison runtime/syntax/eviews.vim @ 10051:46763b01cd9a

commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 31 22:22:10 2016 +0200 Updated runtime files. Remove HiLink commands.
author Christian Brabandt <cb@256bit.org>
date Wed, 31 Aug 2016 22:30:08 +0200
parents 43efa4f5a8ea
children
comparison
equal deleted inserted replaced
10050:b702edc4b2b8 10051:46763b01cd9a
61 syn match eCurlyError /[)\]]/ contained 61 syn match eCurlyError /[)\]]/ contained
62 syn match eParenError /[\]}]/ contained 62 syn match eParenError /[\]}]/ contained
63 63
64 " Define the default highlighting. 64 " Define the default highlighting.
65 " Only when an item doesn't have highlighting yet 65 " Only when an item doesn't have highlighting yet
66 command -nargs=+ HiLink hi def link <args> 66 hi def link eComment Comment
67 HiLink eComment Comment 67 hi def link eConstant Identifier
68 HiLink eConstant Identifier 68 hi def link eStringId Identifier
69 HiLink eStringId Identifier 69 hi def link eCommand Type
70 HiLink eCommand Type 70 hi def link eString String
71 HiLink eString String 71 hi def link eNumber Number
72 HiLink eNumber Number 72 hi def link eBoolean Boolean
73 HiLink eBoolean Boolean 73 hi def link eFloat Float
74 HiLink eFloat Float 74 hi def link eConditional Conditional
75 HiLink eConditional Conditional 75 hi def link eProgLang Statement
76 HiLink eProgLang Statement 76 hi def link eOVP Statement
77 HiLink eOVP Statement 77 hi def link eStdCmd Statement
78 HiLink eStdCmd Statement 78 hi def link eIdentifier Normal
79 HiLink eIdentifier Normal 79 hi def link eDelimiter Delimiter
80 HiLink eDelimiter Delimiter 80 hi def link eError Error
81 HiLink eError Error 81 hi def link eBraceError Error
82 HiLink eBraceError Error 82 hi def link eCurlyError Error
83 HiLink eCurlyError Error 83 hi def link eParenError Error
84 HiLink eParenError Error
85 delcommand HiLink
86 84
87 let b:current_syntax="eviews" 85 let b:current_syntax="eviews"
88 86
89 " vim: ts=8 sw=2 87 " vim: ts=8 sw=2