Skip to content

VSCode Settings

Frequently used VSCode settings I put into .vscode/settings.json of my projects.

File nesting

Nest Go test files under their source file in the explorer.

{
    "explorer.fileNesting.enabled": true,
    "explorer.fileNesting.expand": false,
    "explorer.fileNesting.patterns": {
        "*.go": "${capture}_test.go, ${capture}_bench_test.go"
    }
}

Mark as read

Mark as unread

https://berkkaraal.com/

Comments