comparison runtime/syntax/snobol4.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 371ceeebbdaa
comparison
equal deleted inserted replaced
10050:b702edc4b2b8 10051:46763b01cd9a
75 " optional shell shebang line 75 " optional shell shebang line
76 " syn match snobol4Comment "^\#\!.*$" 76 " syn match snobol4Comment "^\#\!.*$"
77 77
78 " Define the default highlighting. 78 " Define the default highlighting.
79 " Only when an item doesn't have highlighting yet 79 " Only when an item doesn't have highlighting yet
80 command -nargs=+ HiLink hi def link <args>
81 80
82 HiLink snobol4Constant Constant 81 hi def link snobol4Constant Constant
83 HiLink snobol4Label Label 82 hi def link snobol4Label Label
84 HiLink snobol4Goto Repeat 83 hi def link snobol4Goto Repeat
85 HiLink snobol4Conditional Conditional 84 hi def link snobol4Conditional Conditional
86 HiLink snobol4Repeat Repeat 85 hi def link snobol4Repeat Repeat
87 HiLink snobol4Number Number 86 hi def link snobol4Number Number
88 HiLink snobol4Error Error 87 hi def link snobol4Error Error
89 HiLink snobol4Statement PreProc 88 hi def link snobol4Statement PreProc
90 HiLink snobol4BogusStatement snobol4Error 89 hi def link snobol4BogusStatement snobol4Error
91 HiLink snobol4String String 90 hi def link snobol4String String
92 HiLink snobol4Comment Comment 91 hi def link snobol4Comment Comment
93 HiLink snobol4Special Special 92 hi def link snobol4Special Special
94 HiLink snobol4Todo Todo 93 hi def link snobol4Todo Todo
95 HiLink snobol4Keyword Keyword 94 hi def link snobol4Keyword Keyword
96 HiLink snobol4Function Function 95 hi def link snobol4Function Function
97 HiLink snobol4MathsOperator Operator 96 hi def link snobol4MathsOperator Operator
98 HiLink snobol4ParenError snobol4Error 97 hi def link snobol4ParenError snobol4Error
99 HiLink snobol4ErrInParen snobol4Error 98 hi def link snobol4ErrInParen snobol4Error
100 HiLink snobol4ErrInBracket snobol4Error 99 hi def link snobol4ErrInBracket snobol4Error
101 HiLink snobol4SysVar Keyword 100 hi def link snobol4SysVar Keyword
102 HiLink snobol4BogusSysVar snobol4Error 101 hi def link snobol4BogusSysVar snobol4Error
103 if exists("snobol4_strict_mode") 102 if exists("snobol4_strict_mode")
104 HiLink snobol4ExtSysVar WarningMsg 103 hi def link snobol4ExtSysVar WarningMsg
105 HiLink snobol4ExtKeyword WarningMsg 104 hi def link snobol4ExtKeyword WarningMsg
106 else 105 else
107 HiLink snobol4ExtSysVar snobol4SysVar 106 hi def link snobol4ExtSysVar snobol4SysVar
108 HiLink snobol4ExtKeyword snobol4Keyword 107 hi def link snobol4ExtKeyword snobol4Keyword
109 endif 108 endif
110 109
111 delcommand HiLink
112 110
113 let b:current_syntax = "snobol4" 111 let b:current_syntax = "snobol4"
114 " vim: ts=8 112 " vim: ts=8