comparison runtime/syntax/mysql.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
269 syn region mysqlFunction start="weekday(" end=")" contains=ALL 269 syn region mysqlFunction start="weekday(" end=")" contains=ALL
270 syn region mysqlFunction start="yearweek(" end=")" contains=ALL 270 syn region mysqlFunction start="yearweek(" end=")" contains=ALL
271 271
272 " Define the default highlighting. 272 " Define the default highlighting.
273 " Only when an item doesn't have highlighting yet 273 " Only when an item doesn't have highlighting yet
274 command -nargs=+ HiLink hi def link <args> 274
275 275 hi def link mysqlKeyword Statement
276 HiLink mysqlKeyword Statement 276 hi def link mysqlSpecial Special
277 HiLink mysqlSpecial Special 277 hi def link mysqlString String
278 HiLink mysqlString String 278 hi def link mysqlNumber Number
279 HiLink mysqlNumber Number 279 hi def link mysqlVariable Identifier
280 HiLink mysqlVariable Identifier 280 hi def link mysqlComment Comment
281 HiLink mysqlComment Comment 281 hi def link mysqlType Type
282 HiLink mysqlType Type 282 hi def link mysqlOperator Statement
283 HiLink mysqlOperator Statement 283 hi def link mysqlFlow Statement
284 HiLink mysqlFlow Statement 284 hi def link mysqlFunction Function
285 HiLink mysqlFunction Function 285
286
287 delcommand HiLink
288 286
289 let b:current_syntax = "mysql" 287 let b:current_syntax = "mysql"
290 288