From 6a748d15fa22b5cbf094d1343f098136a8723771 Mon Sep 17 00:00:00 2001 From: eitsupi Date: Tue, 19 Apr 2022 13:38:24 +0000 Subject: [PATCH] more auto closing and surrounding pairs --- language-configuration.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/language-configuration.json b/language-configuration.json index 686489e..ad618c5 100644 --- a/language-configuration.json +++ b/language-configuration.json @@ -22,6 +22,21 @@ { "open": "(", "close": ")" + }, + { + "open": "`", + "close": "`", + "notIn": ["string"] + }, + { + "open": "\"", + "close": "\"", + "notIn": ["string"] + }, + { + "open": "'", + "close": "'", + "notIn": ["string"] } ], "surroundingPairs": [ @@ -32,7 +47,8 @@ ["*", "*"], ["{", "}"], ["'", "'"], - ["\"", "\""] + ["\"", "\""], + ["$", "$"] ], "folding": { "offSide": true,