From 9150500aee6e38e44771350f99eb79ac0d8768e1 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Thu, 21 Apr 2016 22:18:13 +0200 Subject: [PATCH] [bat] add autoclosing & sourrounding pairs --- extensions/bat/bat.configuration.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/extensions/bat/bat.configuration.json b/extensions/bat/bat.configuration.json index c53e2f22dfb..8b1695d8ec2 100644 --- a/extensions/bat/bat.configuration.json +++ b/extensions/bat/bat.configuration.json @@ -6,5 +6,17 @@ ["{", "}"], ["[", "]"], ["(", ")"] + ], + "autoClosingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""] + ], + "surroundingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""] ] } \ No newline at end of file -- GitLab