根据this post可以在GoClipse中启用autoimport:
1) install goimports: go get code.google.com/p/go.tools/cmd/goimports 2) in eclipse goto: Preferences -> Go -> Go Formatter and set it to be the path of the goimports bin This will fix all imports when you format. If you combine this with #67, then imports will be automatically fixed on save.
问题
当我尝试在Eclipse中搜索Go Formatter时,我找不到它。
答案 0 :(得分:4)
我的眼睛发现了一件事:
我知道goimports网址不再是google.com/p/go.tools/cmd/goimports。
所以让我们试试以下内容:
go get golang.org/x/tools/cmd/goimports
Preferences
- > Go
gofmt
设置为${GOPATH}/bin/goimports
(goimports所在的位置)Eclipse
并确保在按下 CTRL + SHIFT + F 时使用goimports
。< / LI>
醇>