comparison runtime/syntax/sqlinformix.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 d46f974fd69e
comparison
equal deleted inserted replaced
10050:b702edc4b2b8 10051:46763b01cd9a
150 150
151 151
152 152
153 " Define the default highlighting. 153 " Define the default highlighting.
154 " Only when an item doesn't have highlighting yet 154 " Only when an item doesn't have highlighting yet
155 command -nargs=+ HiLink hi def link <args>
156 155
157 156
158 " === Comment syntax group === 157 " === Comment syntax group ===
159 HiLink sqlComment Comment 158 hi def link sqlComment Comment
160 159
161 " === Constant syntax group === 160 " === Constant syntax group ===
162 HiLink sqlNumber Number 161 hi def link sqlNumber Number
163 HiLink sqlBoolean Boolean 162 hi def link sqlBoolean Boolean
164 HiLink sqlString String 163 hi def link sqlString String
165 164
166 " === Statment syntax group === 165 " === Statment syntax group ===
167 HiLink sqlStatement Statement 166 hi def link sqlStatement Statement
168 HiLink sqlConditional Conditional 167 hi def link sqlConditional Conditional
169 HiLink sqlRepeat Repeat 168 hi def link sqlRepeat Repeat
170 HiLink sqlKeyword Keyword 169 hi def link sqlKeyword Keyword
171 HiLink sqlOperator Operator 170 hi def link sqlOperator Operator
172 HiLink sqlException Exception 171 hi def link sqlException Exception
173 172
174 " === Identifier syntax group === 173 " === Identifier syntax group ===
175 HiLink sqlFunction Function 174 hi def link sqlFunction Function
176 175
177 " === Type syntax group === 176 " === Type syntax group ===
178 HiLink sqlType Type 177 hi def link sqlType Type
179 178
180 " === Todo syntax group === 179 " === Todo syntax group ===
181 HiLink sqlTodo Todo 180 hi def link sqlTodo Todo
182 181
183 delcommand HiLink
184 182
185 let b:current_syntax = "sqlinformix" 183 let b:current_syntax = "sqlinformix"