comparison runtime/syntax/plsql.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 4d76b3e07c07
comparison
equal deleted inserted replaced
10050:b702edc4b2b8 10051:46763b01cd9a
219 " Syntax Synchronizing 219 " Syntax Synchronizing
220 syn sync minlines=10 maxlines=100 220 syn sync minlines=10 maxlines=100
221 221
222 " Define the default highlighting. 222 " Define the default highlighting.
223 " Only when an item doesn't have highlighting yet. 223 " Only when an item doesn't have highlighting yet.
224 command -nargs=+ HiLink hi def link <args> 224
225 225 hi def link plsqlAttribute Macro
226 HiLink plsqlAttribute Macro 226 hi def link plsqlBlockError Error
227 HiLink plsqlBlockError Error 227 hi def link plsqlBooleanLiteral Boolean
228 HiLink plsqlBooleanLiteral Boolean 228 hi def link plsqlCharLiteral Character
229 HiLink plsqlCharLiteral Character 229 hi def link plsqlComment Comment
230 HiLink plsqlComment Comment 230 hi def link plsqlCommentL Comment
231 HiLink plsqlCommentL Comment 231 hi def link plsqlConditional Conditional
232 HiLink plsqlConditional Conditional 232 hi def link plsqlError Error
233 HiLink plsqlError Error 233 hi def link plsqlErrInBracket Error
234 HiLink plsqlErrInBracket Error 234 hi def link plsqlErrInBlock Error
235 HiLink plsqlErrInBlock Error 235 hi def link plsqlErrInParen Error
236 HiLink plsqlErrInParen Error 236 hi def link plsqlException Function
237 HiLink plsqlException Function 237 hi def link plsqlFloatLiteral Float
238 HiLink plsqlFloatLiteral Float 238 hi def link plsqlFunction Function
239 HiLink plsqlFunction Function 239 hi def link plsqlGarbage Error
240 HiLink plsqlGarbage Error 240 hi def link plsqlHostIdentifier Label
241 HiLink plsqlHostIdentifier Label 241 hi def link plsqlIdentifier Normal
242 HiLink plsqlIdentifier Normal 242 hi def link plsqlIntLiteral Number
243 HiLink plsqlIntLiteral Number 243 hi def link plsqlOperator Operator
244 HiLink plsqlOperator Operator 244 hi def link plsqlParen Normal
245 HiLink plsqlParen Normal 245 hi def link plsqlParenError Error
246 HiLink plsqlParenError Error 246 hi def link plsqlSpaceError Error
247 HiLink plsqlSpaceError Error 247 hi def link plsqlPseudo PreProc
248 HiLink plsqlPseudo PreProc 248 hi def link plsqlKeyword Keyword
249 HiLink plsqlKeyword Keyword 249 hi def link plsqlRepeat Repeat
250 HiLink plsqlRepeat Repeat 250 hi def link plsqlStorage StorageClass
251 HiLink plsqlStorage StorageClass 251 hi def link plsqlSQLKeyword Function
252 HiLink plsqlSQLKeyword Function 252 hi def link plsqlStringError Error
253 HiLink plsqlStringError Error 253 hi def link plsqlStringLiteral String
254 HiLink plsqlStringLiteral String 254 hi def link plsqlCommentString String
255 HiLink plsqlCommentString String 255 hi def link plsqlComment2String String
256 HiLink plsqlComment2String String 256 hi def link plsqlSymbol Normal
257 HiLink plsqlSymbol Normal 257 hi def link plsqlTrigger Function
258 HiLink plsqlTrigger Function 258 hi def link plsqlTypeAttribute StorageClass
259 HiLink plsqlTypeAttribute StorageClass 259 hi def link plsqlTodo Todo
260 HiLink plsqlTodo Todo 260
261
262 delcommand HiLink
263 261
264 let b:current_syntax = "plsql" 262 let b:current_syntax = "plsql"
265 263
266 " vim: ts=8 sw=2 264 " vim: ts=8 sw=2