24

我正在使用 GoLand IDE 在 Go 中编写代码。当我保存文件时,我希望未使用的导入消失(如 VS 代码)

我在“代码”->“显示重新格式化文件对话框”中启用了“优化导入”。但是当我保存文件时,导入它仍然存在

4

3 回答 3

32

As of version 2021.3

Two separate entries where added to the File Watchers that are enabled by default. One for formatting the code on save, one for optimising the imports on save:

enter image description here

How the imports are sorted, grouped, etc. can be further defined in the Code Style settings for Go:

enter image description here

There is another small option to run gofmt on reformat in the Other tab of Go's Code Style settings:

enter image description here

Before version 2021.3

The setting to set up gofmt or goimports on save is in the File Watchers. Here you can add a new file watcher at the bottom and select gofmt or goimports from the list.

enter image description here

Setting this to goimports will do both:

  • code formatting (gofmt)
  • updating, sorting and grouping imports
于 2017-08-09T12:17:39.680 回答
10

GogLand EAP 16中删除了“保存时”选项卡。

在较新的版本中,您必须转到Settings-> Tools->File Watchers并在goimports那里添加。

于 2018-10-02T14:11:17.913 回答
7

对于那些在 Goland 自动保存上与 gofmt 战斗的人(mat007 评论)

您可以双击文件观察器中的项目以显示编辑观察器菜单。

取消选中自动保存编辑的文件以触发观察者,它现在应该只在手动保存时触发:

在此处输入图像描述 (戈兰2020.3)

于 2019-06-13T06:47:22.937 回答