From ebe1ad0d9a6a2535aa3d1049c820a250d697da39 Mon Sep 17 00:00:00 2001 From: Hugo van Rijswijk Date: Fri, 22 Mar 2019 15:28:49 +0100 Subject: [PATCH] Add auto-closing pair for string interpolation --- syntax/language-configuration.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/syntax/language-configuration.json b/syntax/language-configuration.json index aa25710..5f83c27 100644 --- a/syntax/language-configuration.json +++ b/syntax/language-configuration.json @@ -17,6 +17,9 @@ ["[", "]"], ["(", ")"], ["\"", "\""], + ["s\"", "\""], + ["f\"", "\""], + ["raw\"", "\""], ["'", "'"] ], // symbols that that can be used to surround a selection @@ -27,4 +30,4 @@ ["\"", "\""], ["'", "'"] ] -} \ No newline at end of file +}