Added golang - gofmt support

Added support for gofmt without any of the extra formatting options
enabled by default. Extra options can be found using `gofmt --help`
(-r, -s).
This commit is contained in:
Dani Hodovic 2015-06-13 11:10:25 +02:00
parent aa75481546
commit a3f65420ea
2 changed files with 10 additions and 0 deletions

View File

@ -129,6 +129,10 @@ Note that compatible `ruby-beautify-0.94.0` or higher version.
Here is the link to the repository: https://github.com/erniebrodeur/ruby-beautify.
This beautifier developed and tested with ruby `2.0+`, so you can have weird results with earlier ruby versions.
* `gofmt` for __Golang__.
The default golang formatting program is shipped with the golang distribution. Make sure `gofmt` is in your PATH (if golang is installed properly, it should be).
Here is the link to the installation: https://golang.org/doc/install
How can I change the behaviour of formatters, or add one myself?
----------------------------------------------------------------
If you need a formatter that is not among the defaults, or if you are not satisfied with the default formatting behaviour that is provided by vim-autoformat, you can define it yourself.

View File

@ -124,3 +124,9 @@ if !exists('g:formatters_xhtml')
endif
" Golang
let g:formatdef_gofmt = '"gofmt"'
if !exists('g:formatters_go')
let g:formatters_go = ['gofmt']
endif