feat(settings/file-nesting): expand patterns and siable file nesting

While I like the idea of file nesting, when actually enabled I find it makes me feel uncomfortable, and I kind of hate it.
This commit is contained in:
2025-03-13 00:18:58 +00:00
parent cd73b59499
commit a6463f2d9e

View File

@@ -111,9 +111,13 @@
// MARK: Explorer
// ===========================================================================
//
"explorer.fileNesting.enabled": true,
// I like the idea of file nesting, but in practise I find myself hating it :(
"explorer.fileNesting.enabled": false,
"explorer.fileNesting.patterns": {
"*.go": "${capture}_test.go, ${capture}_example_test.go, ${capture}_internal_test.go, ${capture}_integration_test.go"
"*.go": "${capture}_test.go, ${capture}_example_test.go, ${capture}_integration_test.go, ${capture}_internal_test.go",
"Brewfile": "Brewfile.lock.json",
"Gemfile": "Gemfile.lock",
"go.mod": "go.sum"
},
"explorer.sortOrder": "mixed",
"explorer.sortOrderLexicographicOptions": "unicode",