comparison runtime/syntax/occam.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
83 syn keyword occamCDString TRUE FALSE AND OR contained 83 syn keyword occamCDString TRUE FALSE AND OR contained
84 syn match occamCDString /<\|>\|=\|(\|)/ contained 84 syn match occamCDString /<\|>\|=\|(\|)/ contained
85 85
86 syn region occamCDirective start=/#\(USE\|INCLUDE\|PRAGMA\|DEFINE\|UNDEFINE\|UNDEF\|IF\|ELIF\|ELSE\|ENDIF\|WARNING\|ERROR\|RELAX\)\>/ end=/$/ contains=occamString,occamComment,occamCDString 86 syn region occamCDirective start=/#\(USE\|INCLUDE\|PRAGMA\|DEFINE\|UNDEFINE\|UNDEF\|IF\|ELIF\|ELSE\|ENDIF\|WARNING\|ERROR\|RELAX\)\>/ end=/$/ contains=occamString,occamComment,occamCDString
87 87
88 command -nargs=+ HiLink hi def link <args>
89 88
90 HiLink occamType Type 89 hi def link occamType Type
91 HiLink occamKeyword Keyword 90 hi def link occamKeyword Keyword
92 HiLink occamComment Comment 91 hi def link occamComment Comment
93 HiLink occamCommentTitle PreProc 92 hi def link occamCommentTitle PreProc
94 HiLink occamTodo Todo 93 hi def link occamTodo Todo
95 HiLink occamNote Todo 94 hi def link occamNote Todo
96 HiLink occamString String 95 hi def link occamString String
97 HiLink occamCharString String 96 hi def link occamCharString String
98 HiLink occamNumber Number 97 hi def link occamNumber Number
99 HiLink occamCDirective PreProc 98 hi def link occamCDirective PreProc
100 HiLink occamCDString String 99 hi def link occamCDString String
101 HiLink occamPPIdentifier PreProc 100 hi def link occamPPIdentifier PreProc
102 HiLink occamBoolean Boolean 101 hi def link occamBoolean Boolean
103 HiLink occamSpecialChar SpecialChar 102 hi def link occamSpecialChar SpecialChar
104 HiLink occamChar Character 103 hi def link occamChar Character
105 HiLink occamStructure Structure 104 hi def link occamStructure Structure
106 HiLink occamIdentifier Identifier 105 hi def link occamIdentifier Identifier
107 HiLink occamConstant Constant 106 hi def link occamConstant Constant
108 HiLink occamOperator Operator 107 hi def link occamOperator Operator
109 HiLink occamFunction Ignore 108 hi def link occamFunction Ignore
110 HiLink occamRepeat Repeat 109 hi def link occamRepeat Repeat
111 HiLink occamConditional Conditional 110 hi def link occamConditional Conditional
112 HiLink occamBrackets Type 111 hi def link occamBrackets Type
113 HiLink occamParantheses Delimiter 112 hi def link occamParantheses Delimiter
114 113
115 delcommand HiLink
116 114
117 let b:current_syntax = "occam" 115 let b:current_syntax = "occam"
118 116