From 17ddef1796bcf645515d7aba389d299cd72fb2a1 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Thu, 21 Apr 2016 22:47:17 +0200 Subject: [PATCH] [objectivec] autoclosing & surrounding pairs --- .../objective-c/objective-c.configuration.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/extensions/objective-c/objective-c.configuration.json b/extensions/objective-c/objective-c.configuration.json index da6ed547150..e4656d0babb 100644 --- a/extensions/objective-c/objective-c.configuration.json +++ b/extensions/objective-c/objective-c.configuration.json @@ -7,5 +7,19 @@ ["{", "}"], ["[", "]"], ["(", ")"] + ], + "autoClosingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"] + ], + "surroundingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"] ] } \ No newline at end of file