vim-goyacc

Vim filetype support for goyacc

Stars
22
Committers
2

Vim Filetype Support for goyacc

vim-goyacc is a filetype support for goyacc.

It provides standard YACC syntax highlight and Go syntax highlight inside semantic action {...}. Default YACC syntax highlight attempts to highlight the semantic action as C or C++, though.

And this also provides Go's indentation using runtime/indent/go.vim. It provides more pleasant auto indentation as editing Go source.

Files whose names end with .go.y are detected as a file for goyacc. If you want to detect files with your own rule, please write your autocmd in your vimrc.

e.g.

" All files end with .y are detected as goyacc parser definition file.
autocmd BufNewFile,BufReadPost *.y setlocal filetype=goyacc

Or write mode line at the bottom of your file as below.

/* vim: set ft=goyacc: */

How to Install

If you use Vim's default package management, please refer :help load-plugins. Clone this repository with git to proper location in your filesystem.

If you use your favorite Vim plugin manager like vim-plug, please follow the instruction in its documentation.

License

This plugin was derived from Vim's standard YACC filetype support. Hence this plugin is provided with the same license as Vim (Vim license). Please see :help license in Vim for more detail.