comparison runtime/syntax/tads.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
118 endif 118 endif
119 execute "syn sync maxlines=" . tads_sync_dist 119 execute "syn sync maxlines=" . tads_sync_dist
120 120
121 " Define the default highlighting. 121 " Define the default highlighting.
122 " Only when an item doesn't have highlighting yet 122 " Only when an item doesn't have highlighting yet
123 command -nargs=+ HiLink hi def link <args>
124 123
125 " The default methods for highlighting. Can be overridden later 124 " The default methods for highlighting. Can be overridden later
126 HiLink tadsFunctionDef Function 125 hi def link tadsFunctionDef Function
127 HiLink tadsFunction Structure 126 hi def link tadsFunction Structure
128 HiLink tadsClass Structure 127 hi def link tadsClass Structure
129 HiLink tadsClassDef Identifier 128 hi def link tadsClassDef Identifier
130 HiLink tadsObjectDef Identifier 129 hi def link tadsObjectDef Identifier
131 " no highlight for tadsEmbedded, so it prints as normal text w/in the string 130 " no highlight for tadsEmbedded, so it prints as normal text w/in the string
132 131
133 HiLink tadsOperator Operator 132 hi def link tadsOperator Operator
134 HiLink tadsStructure Structure 133 hi def link tadsStructure Structure
135 HiLink tadsTodo Todo 134 hi def link tadsTodo Todo
136 HiLink tadsLabel Label 135 hi def link tadsLabel Label
137 HiLink tadsConditional Conditional 136 hi def link tadsConditional Conditional
138 HiLink tadsRepeat Repeat 137 hi def link tadsRepeat Repeat
139 HiLink tadsException Exception 138 hi def link tadsException Exception
140 HiLink tadsStatement Statement 139 hi def link tadsStatement Statement
141 HiLink tadsStorageClass StorageClass 140 hi def link tadsStorageClass StorageClass
142 HiLink tadsKeyWord Keyword 141 hi def link tadsKeyWord Keyword
143 HiLink tadsSpecial SpecialChar 142 hi def link tadsSpecial SpecialChar
144 HiLink tadsNumber Number 143 hi def link tadsNumber Number
145 HiLink tadsBoolean Boolean 144 hi def link tadsBoolean Boolean
146 HiLink tadsDoubleString tadsString 145 hi def link tadsDoubleString tadsString
147 HiLink tadsSingleString tadsString 146 hi def link tadsSingleString tadsString
148 147
149 HiLink tadsOctalError tadsError 148 hi def link tadsOctalError tadsError
150 HiLink tadsCommentError tadsError 149 hi def link tadsCommentError tadsError
151 HiLink tadsBraceError tadsError 150 hi def link tadsBraceError tadsError
152 HiLink tadsInBrace tadsError 151 hi def link tadsInBrace tadsError
153 HiLink tadsError Error 152 hi def link tadsError Error
154 153
155 HiLink tadsInclude Include 154 hi def link tadsInclude Include
156 HiLink tadsPreProc PreProc 155 hi def link tadsPreProc PreProc
157 HiLink tadsDefine Macro 156 hi def link tadsDefine Macro
158 HiLink tadsIncluded tadsString 157 hi def link tadsIncluded tadsString
159 HiLink tadsPreCondit PreCondit 158 hi def link tadsPreCondit PreCondit
160 159
161 HiLink tadsString String 160 hi def link tadsString String
162 HiLink tadsComment Comment 161 hi def link tadsComment Comment
163 162
164 delcommand HiLink
165 163
166 164
167 let b:current_syntax = "tads" 165 let b:current_syntax = "tads"
168 166
169 " Changes: 167 " Changes: