How to set vscode format golang code on save?

后端 未结 2 1544
滥情空心
滥情空心 2021-02-07 09:15

I\'m using vscode with Go extensions to edit golang source code. Each time I want to format code, I have to press Ctrl-Shift-i

2条回答
  •  醉梦人生
    2021-02-07 10:19

    You should install this plugin: https://github.com/Microsoft/vscode-go. One of the options is to set "auto format" on save: go.formatOnSave": false. It uses the Golang tooling for formatting.

提交回复
热议问题