我已经Visual Studio Code Insiders安装了。基本上我已经安装了GoMicrosoft 的扩展并编写了简单的 hello world 应用程序。现在我总是使用空格来缩进我的代码,但我看到它变成了大小为 4 的制表符。所以我想:是的,多么好的扩展,现在我可以开始编写我的代码了。
然后我想起来,默认的代码缩进gofmt应该是 8 个制表符。我查了一下。gofmt main.go确实用大小为 8 的选项卡输出我的代码。但是 vscode 一直在执行大小为 4 的选项卡。我想也许它甚至不会调用,gofmt但当我使用 RPM->Format document with - 它实际上会调用。但是,尺寸为 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扩展的自定义设置
蝴蝶刀刀
相关分类