https://github.com/haya14busa/vim-gofmt
Formats Go source code asynchronously with multiple Go formatters.
https://github.com/haya14busa/vim-gofmt
formatter go golang vim vim-plugin
Last synced: about 1 year ago
JSON representation
Formats Go source code asynchronously with multiple Go formatters.
- Host: GitHub
- URL: https://github.com/haya14busa/vim-gofmt
- Owner: haya14busa
- Created: 2017-02-05T16:45:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-04T02:15:25.000Z (about 9 years ago)
- Last Synced: 2025-03-31T09:51:07.343Z (about 1 year ago)
- Topics: formatter, go, golang, vim, vim-plugin
- Language: Vim script
- Homepage:
- Size: 4.88 KB
- Stars: 11
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vim-gofmt
[](LICENSE)
vim-gofmt formats Go source code asynchronously with multiple Go formatters.
It's experimental and API may changes, but it should work.
## Usage
### :Fmt
`:Fmt` formats Go source code in current buffer using `g:gofmt_formatters`.
It runs asynchronously and doesn't block editing.
### g:gofmt_formatters
default:
```vim
let g:gofmt_formatters = [
\ { 'cmd': 'gofmt', 'args': ['-s', '-w'] },
\ { 'cmd': 'goimports', 'args': ['-w'] },
\ ]
```
Each formatters are used in consecutively in order of the list.
Example:
```
$ go get -u github.com/rhysd/gofmtrlx
$ go get -u github.com/haya14busa/go-typeconv/cmd/gotypeconv
```
```vim
let g:gofmt_formatters = [
\ { 'cmd': 'gofmtrlx', 'args': ['-s', '-w'] },
\ { 'cmd': 'goimports', 'args': ['-w'] },
\ { 'cmd': 'gotypeconv', 'args': ['-w'] },
\ ]
```
## :bird: Author
haya14busa (https://github.com/haya14busa)