From a6463f2d9ef7a84e1a2b6a184975f08953b0965c Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 13 Mar 2025 00:18:58 +0000 Subject: [PATCH] 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. --- settings.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/settings.json b/settings.json index 273d586..e4aa31d 100644 --- a/settings.json +++ b/settings.json @@ -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",