rm custom macros

This commit is contained in:
matthias@arch 2023-12-14 01:58:44 +01:00
parent e178efc947
commit f614e18995
2 changed files with 7 additions and 4 deletions

View File

@ -58,6 +58,12 @@ link `ca65Label` (or `ca65Opcode`) to another class, eg:
hi link ca65Label Typedef hi link ca65Label Typedef
``` ```
You can add syntax highlighting for your own assembler like this:
```vim
" in ~/.vim/ftplugin/ca65.vim
syn keyword ca65customMacros Macro1 Macro2 mul div macro3
```
### Header/Source split function ### Header/Source split function
To use the source-header split function, map it and set your preferred assembly filetypes: To use the source-header split function, map it and set your preferred assembly filetypes:
```vim ```vim

View File

@ -23,9 +23,6 @@ syn clear
syn case ignore syn case ignore
syntax iskeyword @,48-57,192-255,$,_,.,* syntax iskeyword @,48-57,192-255,$,_,.,*
" custom macros
syn keyword customMacros Import Export Print Strf div
" registers " registers
syn keyword ca65Reg x y a syn keyword ca65Reg x y a
@ -116,7 +113,7 @@ hi link ca65PseudoFunctions PreProc
hi link ca65ControlCommands PreProc hi link ca65ControlCommands PreProc
hi link ca65MacLongbranch PreProc hi link ca65MacLongbranch PreProc
hi link ca65MacGeneric PreProc hi link ca65MacGeneric PreProc
hi link customMacros PreProc hi link ca65customMacros PreProc
" INSTRUCTIONS " INSTRUCTIONS
hi link ca6502Opcode ca65Opcode hi link ca6502Opcode ca65Opcode
hi link ca65C02Opcode ca65Opcode hi link ca65C02Opcode ca65Opcode