From 15d468af0ff3c90fea57ea850292ece996a11a21 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Thu, 21 Apr 2016 23:01:54 +0200 Subject: [PATCH] [swift] autoclosing & surrounding pairs --- extensions/swift/swift.configuration.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/extensions/swift/swift.configuration.json b/extensions/swift/swift.configuration.json index da6ed547150..2bdc2752749 100644 --- a/extensions/swift/swift.configuration.json +++ b/extensions/swift/swift.configuration.json @@ -7,5 +7,21 @@ ["{", "}"], ["[", "]"], ["(", ")"] + ], + "autoClosingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"], + ["`", "`"] + ], + "surroundingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"], + ["`", "`"] ] } \ No newline at end of file