From 400801654a6e6814c4d894d41eddc89edd993b5a Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 24 Dec 2025 06:16:40 +0100 Subject: [PATCH 1/3] Add file nesting for `.vdf` and `.txt` files --- .vscode/settings.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 423ac6740..63b65ae40 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,5 +3,9 @@ "editor.insertSpaces": false, "files.associations": { "*.txt": "vdf" + }, + "explorer.fileNesting.patterns": { + "*_english.vdf": "${capture}_*.vdf", + "*_english.txt": "${capture}_*.txt" } } From 4a6cba6dba73728d9e16eb89ba106650edfad8b6 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 24 Dec 2025 06:47:53 +0100 Subject: [PATCH 2/3] Add file nesting for `.json` files --- .vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 63b65ae40..4b28a85f6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,6 +6,7 @@ }, "explorer.fileNesting.patterns": { "*_english.vdf": "${capture}_*.vdf", - "*_english.txt": "${capture}_*.txt" + "*_english.txt": "${capture}_*.txt", + "*_english.json": "${capture}_*.json" } } From 1b7f375b92fb015fc1bb93a2533abe8a5a855083 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 24 Dec 2025 06:55:02 +0100 Subject: [PATCH 3/3] Add file nesting for `.xml` files --- .vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 4b28a85f6..8b378b5e3 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,6 +7,7 @@ "explorer.fileNesting.patterns": { "*_english.vdf": "${capture}_*.vdf", "*_english.txt": "${capture}_*.txt", - "*_english.json": "${capture}_*.json" + "*_english.json": "${capture}_*.json", + "*_english.xml": "${capture}_*.xml" } }