我已经Visual Studio Code Insiders
安装了。基本上我已经安装Go
了 Microsoft 的扩展程序并编写了简单的 hello world 应用程序。现在我总是使用空格来缩进我的代码,但我看到它变成了大小为 4 的制表符。所以我想:是的,多么好的扩展,现在我可以开始编写我的代码了。
然后我记得,默认的代码缩进gofmt
应该是 8 作为制表符。我检查了。gofmt main.go
确实输出带有大小为 8 的选项卡的代码。但是 vscode 一直在执行大小为 4 的选项卡。我想也许它甚至没有调用gofmt
,但是当我使用 RPM-> 格式化文档时 - 它确实如此。但是,大小为 4 的标签仍然存在。在这种情况下我做错了什么?
"editor.renderWhitespace": "all",
"editor.fontFamily": "Hack",
"editor.fontSize": 12,
"editor.minimap.enabled": false,
"editor.fontLigatures": true,
"workbench.editor.enablePreview": false,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.cursorSmoothCaretAnimation": true,
"editor.detectIndentation": false
那些我唯一的编辑器设置,我没有任何关于Go
扩展的自定义设置