The extension provides a functionality to run a custom format for Go codes.
- Make sure you have VSCode and install Go Custom Format from VSCode Marketplace.
- The extension doesn't come with any formatter. A format tool needs to be installed and configured in
goCustomFormat.fmtCmds
to make it work.
This extension contributes the following settings:
goCustomFormat.onSave
: To format codes before saving.goCustomFormat.fmtCmds
: To configure the format commands. For example:
"goCustomFormat.onSave": true,
"goCustomFormat.fmtCmds": [
"grabbyright"
],
The extension also provides several commands in the Command Palette for working with Go files:
Run custom format
: To format the current file.
TODO
Enjoy!