From 13e33253fb2cc7d6fa670ded1a72281ccc0510c1 Mon Sep 17 00:00:00 2001 From: ArcticYeti Date: Sun, 6 Oct 2024 16:54:13 +0200 Subject: [PATCH 1/2] 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/2] 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 +}