comparison runtime/syntax/vrml.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
194 syn region bracketFold start="\[" end="]" transparent fold contains=TOP 194 syn region bracketFold start="\[" end="]" transparent fold contains=TOP
195 syn region VRMLString start=+"+ skip=+\\\\\|\\"+ end=+"+ fold contains=VRMLSpecial,VRMLjScriptString 195 syn region VRMLString start=+"+ skip=+\\\\\|\\"+ end=+"+ fold contains=VRMLSpecial,VRMLjScriptString
196 196
197 " Define the default highlighting. 197 " Define the default highlighting.
198 " Only when an item doesn't have highlighting yet 198 " Only when an item doesn't have highlighting yet
199 command -nargs=+ HiLink hi def link <args> 199
200 200 hi def link VRMLCharacter VRMLString
201 HiLink VRMLCharacter VRMLString 201 hi def link VRMLSpecialCharacter VRMLSpecial
202 HiLink VRMLSpecialCharacter VRMLSpecial 202 hi def link VRMLNumber VRMLString
203 HiLink VRMLNumber VRMLString 203 hi def link VRMLValues VRMLString
204 HiLink VRMLValues VRMLString 204 hi def link VRMLString String
205 HiLink VRMLString String 205 hi def link VRMLSpecial Special
206 HiLink VRMLSpecial Special 206 hi def link VRMLComment Comment
207 HiLink VRMLComment Comment 207 hi def link VRMLNodes Statement
208 HiLink VRMLNodes Statement 208 hi def link VRMLFields Type
209 HiLink VRMLFields Type 209 hi def link VRMLEvents Type
210 HiLink VRMLEvents Type 210 hi def link VRMLfTypes LineNr
211 HiLink VRMLfTypes LineNr
212 " hi VRMLfTypes ctermfg=6 guifg=Brown 211 " hi VRMLfTypes ctermfg=6 guifg=Brown
213 HiLink VRMLInstances PreCondit 212 hi def link VRMLInstances PreCondit
214 HiLink VRMLRoutes PreCondit 213 hi def link VRMLRoutes PreCondit
215 HiLink VRMLProtos PreProc 214 hi def link VRMLProtos PreProc
216 HiLink VRMLRouteNode Identifier 215 hi def link VRMLRouteNode Identifier
217 HiLink VRMLInstName Identifier 216 hi def link VRMLInstName Identifier
218 HiLink VRMLTypes Identifier 217 hi def link VRMLTypes Identifier
219 218
220 delcommand HiLink
221 219
222 let b:current_syntax = "vrml" 220 let b:current_syntax = "vrml"
223 221
224 " vim: ts=8 222 " vim: ts=8