comparison runtime/syntax/a65.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
1 " Vim syntax file 1 " Vim syntax file
2 " Language: xa 6502 cross assembler 2 " Language: xa 6502 cross assembler
3 " Maintainer: Clemens Kirchgatterer <clemens@1541.org> 3 " Maintainer: Clemens Kirchgatterer <clemens@1541.org>
4 " Last Change: 2014 Jan 05 4 " Last Change: 2016 Aug 31
5 5
6 " quit when a syntax file was already loaded 6 " quit when a syntax file was already loaded
7 if exists("b:current_syntax") 7 if exists("b:current_syntax")
8 finish 8 finish
9 endif 9 endif
134 syn match a65End excludenl /end$/ contained 134 syn match a65End excludenl /end$/ contained
135 syn match a65Continue "\\$" contained 135 syn match a65Continue "\\$" contained
136 136
137 " Define the default highlighting. 137 " Define the default highlighting.
138 " Only when an item doesn't have highlighting yet 138 " Only when an item doesn't have highlighting yet
139 command -nargs=+ HiLink hi def link <args>
140 139
141 HiLink a65Section Special 140 hi def link a65Section Special
142 HiLink a65Address Special 141 hi def link a65Address Special
143 HiLink a65Comment Comment 142 hi def link a65Comment Comment
144 HiLink a65PreProc PreProc 143 hi def link a65PreProc PreProc
145 HiLink a65Number Number 144 hi def link a65Number Number
146 HiLink a65String String 145 hi def link a65String String
147 HiLink a65Type Statement 146 hi def link a65Type Statement
148 HiLink a65Opcode Type 147 hi def link a65Opcode Type
149 HiLink a65PC Error 148 hi def link a65PC Error
150 HiLink a65Todo Todo 149 hi def link a65Todo Todo
151 HiLink a65HiLo Number 150 hi def link a65HiLo Number
152 151
153 delcommand HiLink
154 152
155 let b:current_syntax = "a65" 153 let b:current_syntax = "a65"