mirror of
https://github.com/golang/go
synced 2024-11-05 17:46:16 -07:00
802ec582a3
Change-Id: Id3c5b2480c8499ab712265a421ffba125fb913db Reviewed-on: https://go-review.googlesource.com/1401 Reviewed-by: David Symonds <dsymonds@golang.org>
34 lines
978 B
Go
34 lines
978 B
Go
/*
|
|
|
|
Command goimports updates your Go import lines,
|
|
adding missing ones and removing unreferenced ones.
|
|
|
|
$ go get golang.org/x/tools/cmd/goimports
|
|
|
|
It's a drop-in replacement for your editor's gofmt-on-save hook.
|
|
It has the same command-line interface as gofmt and formats
|
|
your code in the same way.
|
|
|
|
For emacs, make sure you have the latest go-mode.el:
|
|
https://github.com/dominikh/go-mode.el
|
|
Then in your .emacs file:
|
|
(setq gofmt-command "goimports")
|
|
(add-to-list 'load-path "/home/you/somewhere/emacs/")
|
|
(require 'go-mode-load)
|
|
(add-hook 'before-save-hook 'gofmt-before-save)
|
|
|
|
For vim, set "gofmt_command" to "goimports":
|
|
https://golang.org/change/39c724dd7f252
|
|
https://golang.org/wiki/IDEsAndTextEditorPlugins
|
|
etc
|
|
|
|
For GoSublime, follow the steps described here:
|
|
http://michaelwhatcott.com/gosublime-goimports/
|
|
|
|
For other editors, you probably know what to do.
|
|
|
|
Happy hacking!
|
|
|
|
*/
|
|
package main // import "golang.org/x/tools/cmd/goimports"
|