mattn / vim-goimports

Vim plugin for Minimalist Gopher

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vim-goimports

Vim plugin for Minimalist Gopher

Features

  • Auto-formatting with :w
  • GoImport/GoImportAs

This plugin is mostly based on vim-go.

Will not do

  • Add new commands
  • Modify syntax

Usage

:w

Installation

For vim-plug plugin manager:

Plug 'mattn/vim-goimports'

Configuration

" enable auto format when write (default)
let g:goimports = 1
" disable auto format. but :GoImportRun will work.
let g:goimports = 0
  • g:goimports_simplify - make simplify (a.k.a. gofmt -s) in formatting, when make value of this 1 (default disabled).

    " enable simplify filter
    let g:goimports_simplify = 1
    " disable simplify filter
    unlet! g:goimports_simplify
  • g:goimports_local - use -local option when running goimports. This is useful to import closed-source packages. (comma separated list)

    " run goimports with `-local "github.com/myrepo"` option
    let g:goimports_local = 'github.com/myrepo'
  • To replace goimports command with the drop in replacement tool (e.g. gofumpt).

    " goimport (default)
    let g:goimports_cmd = 'goimports'
    let g:goimports_simplify_cmd = 'gofmt'
    
    " gofumpt
    let g:goimports_cmd = 'gofumports'
    let g:goimports_simplify_cmd = 'gofumpt'
  • To not trigger the location list if errors are present, you can use this option :

    " default is 1
    let g:goimports_show_loclist = 0

Requirements

  • goimports
  • gofmt (optional: for g:goimports_simplify = 1)

License

MIT

Author

Yasuhiro Matsumoto (a.k.a. mattn)

About

Vim plugin for Minimalist Gopher

License:Other


Languages

Language:Vim Script 100.0%