comparison runtime/syntax/pli.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
220 " Syntax Synchronizing 220 " Syntax Synchronizing
221 syn sync minlines=10 maxlines=100 221 syn sync minlines=10 maxlines=100
222 222
223 " Define the default highlighting. 223 " Define the default highlighting.
224 " Only when and item doesn't have highlighting yet. 224 " Only when and item doesn't have highlighting yet.
225 command -nargs=+ HiLink hi def link <args> 225
226 226 hi def link pl1Attribute Macro
227 HiLink pl1Attribute Macro 227 hi def link pl1BlockError Error
228 HiLink pl1BlockError Error 228 hi def link pl1BooleanLiteral Boolean
229 HiLink pl1BooleanLiteral Boolean 229 hi def link pl1CharLiteral Character
230 HiLink pl1CharLiteral Character 230 hi def link pl1Comment Comment
231 HiLink pl1Comment Comment 231 hi def link pl1CommentL Comment
232 HiLink pl1CommentL Comment 232 hi def link pl1Conditional Conditional
233 HiLink pl1Conditional Conditional 233 hi def link pl1Error Error
234 HiLink pl1Error Error 234 hi def link pl1ErrInBracket Error
235 HiLink pl1ErrInBracket Error 235 hi def link pl1ErrInBlock Error
236 HiLink pl1ErrInBlock Error 236 hi def link pl1ErrInParen Error
237 HiLink pl1ErrInParen Error 237 hi def link pl1Exception Function
238 HiLink pl1Exception Function 238 hi def link pl1FloatLiteral Float
239 HiLink pl1FloatLiteral Float 239 hi def link pl1Function Function
240 HiLink pl1Function Function 240 hi def link pl1Garbage Error
241 HiLink pl1Garbage Error 241 hi def link pl1HostIdentifier Label
242 HiLink pl1HostIdentifier Label 242 hi def link pl1Identifier Normal
243 HiLink pl1Identifier Normal 243 hi def link pl1IntLiteral Number
244 HiLink pl1IntLiteral Number 244 hi def link pl1Operator Operator
245 HiLink pl1Operator Operator 245 hi def link pl1Paren Normal
246 HiLink pl1Paren Normal 246 hi def link pl1ParenError Error
247 HiLink pl1ParenError Error 247 hi def link pl1SpaceError Error
248 HiLink pl1SpaceError Error 248 hi def link pl1Pseudo PreProc
249 HiLink pl1Pseudo PreProc 249 hi def link pl1PreProc PreProc
250 HiLink pl1PreProc PreProc 250 hi def link pl1PreProcSym PreProc
251 HiLink pl1PreProcSym PreProc 251 hi def link pl1Keyword Keyword
252 HiLink pl1Keyword Keyword 252 hi def link pl1Other Keyword
253 HiLink pl1Other Keyword 253 hi def link pl1Repeat Repeat
254 HiLink pl1Repeat Repeat 254 hi def link pl1Statement Keyword
255 HiLink pl1Statement Keyword 255 hi def link pl1Storage StorageClass
256 HiLink pl1Storage StorageClass 256 hi def link pl1StringError Error
257 HiLink pl1StringError Error 257 hi def link pl1StringLiteral String
258 HiLink pl1StringLiteral String 258 hi def link pl1CommentString String
259 HiLink pl1CommentString String 259 hi def link pl1Comment2String String
260 HiLink pl1Comment2String String 260 hi def link pl1Symbol Normal
261 HiLink pl1Symbol Normal 261 hi def link pl1Trigger Function
262 HiLink pl1Trigger Function 262 hi def link pl1TypeAttribute StorageClass
263 HiLink pl1TypeAttribute StorageClass 263 hi def link pl1Todo Todo
264 HiLink pl1Todo Todo 264
265
266 delcommand HiLink
267 265
268 let b:current_syntax = "pl1" 266 let b:current_syntax = "pl1"