comparison runtime/syntax/abaqus.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 2198955f9e27
comparison
equal deleted inserted replaced
10050:b702edc4b2b8 10051:46763b01cd9a
21 " Illegal syntax 21 " Illegal syntax
22 syn match abaqusBadLine "^\s\+\*.*" display 22 syn match abaqusBadLine "^\s\+\*.*" display
23 23
24 " Define the default highlighting. 24 " Define the default highlighting.
25 " Only when an item doesn't have highlighting yet 25 " Only when an item doesn't have highlighting yet
26 command -nargs=+ HiLink hi def link <args>
27 26
28 " The default methods for highlighting. Can be overridden later 27 " The default methods for highlighting. Can be overridden later
29 HiLink abaqusComment Comment 28 hi def link abaqusComment Comment
30 HiLink abaqusKeyword Statement 29 hi def link abaqusKeyword Statement
31 HiLink abaqusParameter Identifier 30 hi def link abaqusParameter Identifier
32 HiLink abaqusValue Constant 31 hi def link abaqusValue Constant
33 HiLink abaqusBadLine Error 32 hi def link abaqusBadLine Error
34 33
35 delcommand HiLink
36 34
37 let b:current_syntax = "abaqus" 35 let b:current_syntax = "abaqus"