From ba49f267acd3c6be73be0342c842487fcd659159 Mon Sep 17 00:00:00 2001 From: Alec Theriault Date: Fri, 10 Jan 2025 10:43:07 -0500 Subject: [PATCH] Auto-close backticks Typing a backtick now automatically adds a closing backtick as well. Also possible to quickly add add backticks are ident by selecting and typing backtick. Fixes #279 --- language-configuration.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/language-configuration.json b/language-configuration.json index 119ca12..c021da3 100644 --- a/language-configuration.json +++ b/language-configuration.json @@ -20,6 +20,7 @@ ["s\"", "\""], ["f\"", "\""], ["raw\"", "\""], + ["`", "`"] ], // symbols that that can be used to surround a selection "surroundingPairs": [ @@ -27,6 +28,7 @@ ["[", "]"], ["(", ")"], ["\"", "\""], - ["'", "'"] + ["'", "'"], + ["`", "`"] ] }