如何在GoClipse中启用autoimport?

时间:2015-11-28 21:15:12

标签: eclipse go import goclipse

根据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时,我找不到它。

enter image description here

1 个答案:

答案 0 :(得分:4)

我的眼睛发现了一件事:

我知道goimports网址不再是google.com/p/go.tools/cmd/goimports。

所以让我们试试以下内容:

  1. 执行go get golang.org/x/tools/cmd/goimports
  2. 转到Preferences - > Go
  3. gofmt设置为${GOPATH}/bin/goimports(goimports所在的位置)
  4. 重新启动Eclipse并确保在按下 CTRL + SHIFT + F 时使用goimports。< / LI>