comparison runtime/syntax/postscr.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 11b656e74444
comparison
equal deleted inserted replaced
10050:b702edc4b2b8 10051:46763b01cd9a
722 722
723 endif " GhostScript highlighting 723 endif " GhostScript highlighting
724 724
725 " Define the default highlighting. 725 " Define the default highlighting.
726 " Only when an item doesn't have highlighting yet 726 " Only when an item doesn't have highlighting yet
727 command -nargs=+ HiLink hi def link <args> 727
728 728 hi def link postscrComment Comment
729 HiLink postscrComment Comment 729
730 730 hi def link postscrConstant Constant
731 HiLink postscrConstant Constant 731 hi def link postscrString String
732 HiLink postscrString String 732 hi def link postscrASCIIString postscrString
733 HiLink postscrASCIIString postscrString 733 hi def link postscrHexString postscrString
734 HiLink postscrHexString postscrString 734 hi def link postscrASCII85String postscrString
735 HiLink postscrASCII85String postscrString 735 hi def link postscrNumber Number
736 HiLink postscrNumber Number 736 hi def link postscrInteger postscrNumber
737 HiLink postscrInteger postscrNumber 737 hi def link postscrHex postscrNumber
738 HiLink postscrHex postscrNumber 738 hi def link postscrRadix postscrNumber
739 HiLink postscrRadix postscrNumber 739 hi def link postscrFloat Float
740 HiLink postscrFloat Float 740 hi def link postscrBoolean Boolean
741 HiLink postscrBoolean Boolean 741
742 742 hi def link postscrIdentifier Identifier
743 HiLink postscrIdentifier Identifier 743 hi def link postscrProcedure Function
744 HiLink postscrProcedure Function 744
745 745 hi def link postscrName Statement
746 HiLink postscrName Statement 746 hi def link postscrConditional Conditional
747 HiLink postscrConditional Conditional 747 hi def link postscrRepeat Repeat
748 HiLink postscrRepeat Repeat 748 hi def link postscrL2Repeat postscrRepeat
749 HiLink postscrL2Repeat postscrRepeat 749 hi def link postscrOperator Operator
750 HiLink postscrOperator Operator 750 hi def link postscrL1Operator postscrOperator
751 HiLink postscrL1Operator postscrOperator 751 hi def link postscrL2Operator postscrOperator
752 HiLink postscrL2Operator postscrOperator 752 hi def link postscrL3Operator postscrOperator
753 HiLink postscrL3Operator postscrOperator 753 hi def link postscrMathOperator postscrOperator
754 HiLink postscrMathOperator postscrOperator 754 hi def link postscrLogicalOperator postscrOperator
755 HiLink postscrLogicalOperator postscrOperator 755 hi def link postscrBinaryOperator postscrOperator
756 HiLink postscrBinaryOperator postscrOperator 756
757 757 hi def link postscrDSCComment SpecialComment
758 HiLink postscrDSCComment SpecialComment 758 hi def link postscrSpecialChar SpecialChar
759 HiLink postscrSpecialChar SpecialChar 759
760 760 hi def link postscrTodo Todo
761 HiLink postscrTodo Todo 761
762 762 hi def link postscrError Error
763 HiLink postscrError Error 763 hi def link postscrSpecialCharError postscrError
764 HiLink postscrSpecialCharError postscrError 764 hi def link postscrASCII85CharError postscrError
765 HiLink postscrASCII85CharError postscrError 765 hi def link postscrHexCharError postscrError
766 HiLink postscrHexCharError postscrError 766 hi def link postscrASCIIStringError postscrError
767 HiLink postscrASCIIStringError postscrError 767 hi def link postscrIdentifierError postscrError
768 HiLink postscrIdentifierError postscrError
769 768
770 if exists("postscr_ghostscript") 769 if exists("postscr_ghostscript")
771 HiLink postscrGSOperator postscrOperator 770 hi def link postscrGSOperator postscrOperator
772 HiLink postscrGSMathOperator postscrMathOperator 771 hi def link postscrGSMathOperator postscrMathOperator
773 else 772 else
774 HiLink postscrGSOperator postscrError 773 hi def link postscrGSOperator postscrError
775 HiLink postscrGSMathOperator postscrError 774 hi def link postscrGSMathOperator postscrError
776 endif 775 endif
777 776
778 delcommand HiLink
779 777
780 let b:current_syntax = "postscr" 778 let b:current_syntax = "postscr"
781 779
782 " vim: ts=8 780 " vim: ts=8