prog8/syntax-files/Vim
2021-04-25 17:47:13 +02:00
..
prog8_builtins.vim added 'callfar' builtin function (for cx16 target) that uses jsrfar to call a routine in banked RAM 2021-04-25 17:47:13 +02:00
prog8.vim Add support for built-ins to Vim syntax file 2021-03-23 19:53:20 -04:00
readme.txt Merge pull request #26 from Elektron72/vim-syntax 2021-03-24 20:50:53 +01:00

Vim syntax highlighting definitions.
Created by Elektron72 on github


To install:
    Copy prog8.vim and prog8_builtins.vim into ~/.vim/syntax/. If you will never
    use highlighting for built-in functions and variables, you do not need to
    copy prog8_builtins.vim.

To enable:
    Type:
        :set ft=prog8
    to enable syntax highlighting in the open file.  Alternatively, if you would
    like to enable syntax highlighting for all .p8 files, add the following line
    to your .vimrc:
        au BufRead,BufNewFile *.p8 setfiletype prog8

    If you would like to disable highlighting for built-in functions and
    variables without deleting or renaming the file, add the following line to
    your .vimrc:
        let g:prog8_no_highlight_builtins = 1
    (The value doesn't actually matter, only that the variable is defined.)