From c049bd753f6bf26a60628fadfaa2f98ea0b8d04e Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Thu, 21 Apr 2016 23:00:22 +0200 Subject: [PATCH] [shellscript] autoclosing and surrounding pairs --- .../shellscript/shellscript.configuration.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/extensions/shellscript/shellscript.configuration.json b/extensions/shellscript/shellscript.configuration.json index 80289039213..01b6a8a2823 100644 --- a/extensions/shellscript/shellscript.configuration.json +++ b/extensions/shellscript/shellscript.configuration.json @@ -6,5 +6,21 @@ ["{", "}"], ["[", "]"], ["(", ")"] + ], + "autoClosingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"], + ["`", "`"] + ], + "surroundingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"], + ["`", "`"] ] } \ No newline at end of file