comparison runtime/syntax/javacc.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
50 syn keyword javaccActionToken TOKEN SKIP MORE SPECIAL_TOKEN 50 syn keyword javaccActionToken TOKEN SKIP MORE SPECIAL_TOKEN
51 syn keyword javaccError DEBUG IGNORE_IN_BNF 51 syn keyword javaccError DEBUG IGNORE_IN_BNF
52 52
53 " Define the default highlighting. 53 " Define the default highlighting.
54 " Only when an item doesn't have highlighting yet 54 " Only when an item doesn't have highlighting yet
55 command -nargs=+ HiLink hi def link <args> 55 hi def link javaccSpecToken Statement
56 HiLink javaccSpecToken Statement 56 hi def link javaccActionToken Type
57 HiLink javaccActionToken Type 57 hi def link javaccPackages javaScopeDecl
58 HiLink javaccPackages javaScopeDecl 58 hi def link javaccToken String
59 HiLink javaccToken String 59 hi def link javaccError Error
60 HiLink javaccError Error
61 delcommand HiLink
62 60
63 let b:current_syntax = "javacc" 61 let b:current_syntax = "javacc"
64 let &cpo = s:cpo_save 62 let &cpo = s:cpo_save
65 unlet s:cpo_save 63 unlet s:cpo_save
66 64