add C-like comments

master
an 2019-08-06 16:52:10 -04:00
parent e188260983
commit ae18ad447c
1 changed files with 4 additions and 2 deletions

View File

@ -248,8 +248,9 @@ syn region asm_ca65String start=+"+ skip=+\\"+ end=+"+
syn region asm_ca65Char start=+'+ skip=+\\'+ end=+'+
" Line comments
syn match asm_ca65Comment ";.*" contains=asm_ca65Todo
syn keyword asm_ca65Todo contained TODO FIXME XXX HACK
syn match asm_ca65Comment ";.*" contains=asm_ca65Todo,@Spell
syn region asm_ca65Comment matchgroup=asm_ca65CCommentStart start="/\*" end="\*/" contains=asm_ca65Todo,@Spell fold extend
syn keyword asm_ca65Todo contained TODO FIXME XXX HACK
syn case match
@ -264,6 +265,7 @@ if version >= 508 || !exists("did_asm_ca65_syntax_inits")
command -nargs=+ HiLink hi def link <args>
endif
HiLink asm_ca65CCommentStart Comment
HiLink asm_ca65Comment Comment
HiLink asm_ca65Todo Todo
HiLink asm_ca65Mnemonic Keyword