comparison runtime/syntax/forth.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 c9bacbda2d5b
comparison
equal deleted inserted replaced
10050:b702edc4b2b8 10051:46763b01cd9a
281 syn match forthLocals '{ }' " otherwise, at least two spaces between 281 syn match forthLocals '{ }' " otherwise, at least two spaces between
282 syn region forthDeprecated start='locals|' end='|' 282 syn region forthDeprecated start='locals|' end='|'
283 283
284 " Define the default highlighting. 284 " Define the default highlighting.
285 " Only when an item doesn't have highlighting yet 285 " Only when an item doesn't have highlighting yet
286 command -nargs=+ HiLink hi def link <args>
287 286
288 " The default methods for highlighting. Can be overridden later. 287 " The default methods for highlighting. Can be overridden later.
289 HiLink forthTodo Todo 288 hi def link forthTodo Todo
290 HiLink forthOperators Operator 289 hi def link forthOperators Operator
291 HiLink forthMath Number 290 hi def link forthMath Number
292 HiLink forthInteger Number 291 hi def link forthInteger Number
293 HiLink forthFloat Float 292 hi def link forthFloat Float
294 HiLink forthStack Special 293 hi def link forthStack Special
295 HiLink forthRstack Special 294 hi def link forthRstack Special
296 HiLink forthFStack Special 295 hi def link forthFStack Special
297 HiLink forthSP Special 296 hi def link forthSP Special
298 HiLink forthMemory Function 297 hi def link forthMemory Function
299 HiLink forthAdrArith Function 298 hi def link forthAdrArith Function
300 HiLink forthMemBlks Function 299 hi def link forthMemBlks Function
301 HiLink forthCond Conditional 300 hi def link forthCond Conditional
302 HiLink forthLoop Repeat 301 hi def link forthLoop Repeat
303 HiLink forthColonDef Define 302 hi def link forthColonDef Define
304 HiLink forthEndOfColonDef Define 303 hi def link forthEndOfColonDef Define
305 HiLink forthDefine Define 304 hi def link forthDefine Define
306 HiLink forthDebug Debug 305 hi def link forthDebug Debug
307 HiLink forthAssembler Include 306 hi def link forthAssembler Include
308 HiLink forthCharOps Character 307 hi def link forthCharOps Character
309 HiLink forthConversion String 308 hi def link forthConversion String
310 HiLink forthForth Statement 309 hi def link forthForth Statement
311 HiLink forthVocs Statement 310 hi def link forthVocs Statement
312 HiLink forthString String 311 hi def link forthString String
313 HiLink forthComment Comment 312 hi def link forthComment Comment
314 HiLink forthClassDef Define 313 hi def link forthClassDef Define
315 HiLink forthEndOfClassDef Define 314 hi def link forthEndOfClassDef Define
316 HiLink forthObjectDef Define 315 hi def link forthObjectDef Define
317 HiLink forthEndOfObjectDef Define 316 hi def link forthEndOfObjectDef Define
318 HiLink forthInclude Include 317 hi def link forthInclude Include
319 HiLink forthLocals Type " nothing else uses type and locals must stand out 318 hi def link forthLocals Type " nothing else uses type and locals must stand out
320 HiLink forthDeprecated Error " if you must, change to Type 319 hi def link forthDeprecated Error " if you must, change to Type
321 HiLink forthFileMode Function 320 hi def link forthFileMode Function
322 HiLink forthFileWords Statement 321 hi def link forthFileWords Statement
323 HiLink forthBlocks Statement 322 hi def link forthBlocks Statement
324 HiLink forthSpaceError Error 323 hi def link forthSpaceError Error
325 324
326 delcommand HiLink
327 325
328 let b:current_syntax = "forth" 326 let b:current_syntax = "forth"
329 327
330 let &cpo = s:cpo_save 328 let &cpo = s:cpo_save
331 unlet s:cpo_save 329 unlet s:cpo_save