From 13e33253fb2cc7d6fa670ded1a72281ccc0510c1 Mon Sep 17 00:00:00 2001 From: ArcticYeti Date: Sun, 6 Oct 2024 16:54:13 +0200 Subject: [PATCH 1/3] fix: autoclosing quotes dont autoclose correctly (bolt) --- language-configuration.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/language-configuration.json b/language-configuration.json index 7c24c88..56574a9 100644 --- a/language-configuration.json +++ b/language-configuration.json @@ -15,7 +15,9 @@ ["[", "]"], ["(", ")"], ["\"", "\""], - ["'", "'"] + ["'", "'"], + ["f\"", "f\""], + ["f'", "f'"] ], // symbols that can be used to surround a selection "surroundingPairs": [ From ed1a207a7bd3b531b68d1284d64c114913be2ba2 Mon Sep 17 00:00:00 2001 From: ArcticYeti <77073570+ArcticYeti@users.noreply.github.com> Date: Sun, 6 Oct 2024 16:58:07 +0200 Subject: [PATCH 2/3] Update language-configuration.json fixed tabs formatting --- language-configuration.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language-configuration.json b/language-configuration.json index 56574a9..27a1abc 100644 --- a/language-configuration.json +++ b/language-configuration.json @@ -16,7 +16,7 @@ ["(", ")"], ["\"", "\""], ["'", "'"], - ["f\"", "f\""], + ["f\"", "f\""], ["f'", "f'"] ], // symbols that can be used to surround a selection @@ -27,4 +27,4 @@ ["\"", "\""], ["'", "'"] ] -} \ No newline at end of file +} From 7b3db5957754a373101d0fa230b7f1da5fae9ee9 Mon Sep 17 00:00:00 2001 From: Amy Opas <77073570+thehuglet@users.noreply.github.com> Date: Fri, 7 Nov 2025 21:49:39 +0100 Subject: [PATCH 3/3] fix: add .bolt file association --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index d06132a..6f56aba 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,8 @@ "MCF" ], "extensions": [ - ".mcfunction" + ".mcfunction", + ".bolt" ], "configuration": "./language-configuration.json" }