add syntax
This commit is contained in:
parent
5bb56a54a3
commit
fc9dad4a60
@ -4,9 +4,10 @@ It is focused on the 65C02 processor, please open an issue/a pull request if you
|
|||||||
|
|
||||||
By default, the plugin loads for files having a `.s65` or `.h65` extension.
|
By default, the plugin loads for files having a `.s65` or `.h65` extension.
|
||||||
To load it for your preferred extension, write this into `~/.vim/ftdetect/ca6502.vim`:
|
To load it for your preferred extension, write this into `~/.vim/ftdetect/ca6502.vim`:
|
||||||
|
```vim
|
||||||
" in ~/.vim/ftdetect/ca6502.vim
|
" in ~/.vim/ftdetect/ca6502.vim
|
||||||
au BufRead,BufNewFile *.myExtension setfiletype ca6502
|
au BufRead,BufNewFile *.myExtension setfiletype ca6502
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Syntax
|
## Syntax
|
||||||
@ -26,8 +27,10 @@ There is also a function that opens a header/source file with the same name in a
|
|||||||
For example if `~/project/main.s65` is opened, `~/project/main.h65` would be opened.
|
For example if `~/project/main.s65` is opened, `~/project/main.h65` would be opened.
|
||||||
To use it, map it and set your preferred assembly filetypes.
|
To use it, map it and set your preferred assembly filetypes.
|
||||||
|
|
||||||
|
```vim
|
||||||
" in ~/.vim/ftplugin/ca6502.vim (or vimrc)
|
" in ~/.vim/ftplugin/ca6502.vim (or vimrc)
|
||||||
nnoremap <buffer> <leader>h :call SplitHeader("h65", "s65")<Cr>
|
nnoremap <buffer> <leader>h :call SplitHeader("h65", "s65")<Cr>
|
||||||
|
```
|
||||||
|
|
||||||
## Help
|
## Help
|
||||||
I compiled the datasheet of the WDC 65C02 into a vim help page.
|
I compiled the datasheet of the WDC 65C02 into a vim help page.
|
||||||
|
Loading…
Reference in New Issue
Block a user