comparison runtime/syntax/gnuplot.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 7f88f6a3ed4c
comparison
equal deleted inserted replaced
10050:b702edc4b2b8 10051:46763b01cd9a
499 syn keyword gnuplotStatement shell splot spstats stats system test undefine 499 syn keyword gnuplotStatement shell splot spstats stats system test undefine
500 syn keyword gnuplotStatement unset update 500 syn keyword gnuplotStatement unset update
501 501
502 " ---- Define the default highlighting ---- " 502 " ---- Define the default highlighting ---- "
503 " Only when an item doesn't have highlighting yet 503 " Only when an item doesn't have highlighting yet
504 command -nargs=+ HiLink hi def link <args>
505 504
506 " ---- Comments ---- " 505 " ---- Comments ---- "
507 HiLink gnuplotComment Comment 506 hi def link gnuplotComment Comment
508 507
509 " ---- Constants ---- " 508 " ---- Constants ---- "
510 HiLink gnuplotString String 509 hi def link gnuplotString String
511 HiLink gnuplotNumber Number 510 hi def link gnuplotNumber Number
512 HiLink gnuplotFloat Float 511 hi def link gnuplotFloat Float
513 512
514 " ---- Identifiers ---- " 513 " ---- Identifiers ---- "
515 HiLink gnuplotIdentifier Identifier 514 hi def link gnuplotIdentifier Identifier
516 515
517 " ---- Statements ---- " 516 " ---- Statements ---- "
518 HiLink gnuplotConditional Conditional 517 hi def link gnuplotConditional Conditional
519 HiLink gnuplotRepeat Repeat 518 hi def link gnuplotRepeat Repeat
520 HiLink gnuplotKeyword Keyword 519 hi def link gnuplotKeyword Keyword
521 HiLink gnuplotOperator Operator 520 hi def link gnuplotOperator Operator
522 521
523 " ---- PreProcs ---- " 522 " ---- PreProcs ---- "
524 HiLink gnuplotMacro Macro 523 hi def link gnuplotMacro Macro
525 524
526 " ---- Types ---- " 525 " ---- Types ---- "
527 HiLink gnuplotStatement Type 526 hi def link gnuplotStatement Type
528 HiLink gnuplotFunc Identifier 527 hi def link gnuplotFunc Identifier
529 528
530 " ---- Specials ---- " 529 " ---- Specials ---- "
531 HiLink gnuplotSpecial Special 530 hi def link gnuplotSpecial Special
532 HiLink gnuplotUnit Special 531 hi def link gnuplotUnit Special
533 HiLink gnuplotExternal Special 532 hi def link gnuplotExternal Special
534 533
535 " ---- Errors ---- " 534 " ---- Errors ---- "
536 HiLink gnuplotError Error 535 hi def link gnuplotError Error
537 HiLink gnuplotOctalError Error 536 hi def link gnuplotOctalError Error
538 537
539 " ---- Todos ---- " 538 " ---- Todos ---- "
540 HiLink gnuplotTodo Todo 539 hi def link gnuplotTodo Todo
541 540
542 delcommand HiLink
543 541
544 let b:current_syntax = "gnuplot" 542 let b:current_syntax = "gnuplot"
545 543
546 " vim: ts=8 544 " vim: ts=8