From bef54eedb459fd992eccc91fd1491efc0b6b72df Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Thu, 21 Apr 2016 22:23:08 +0200 Subject: [PATCH] [clojure] autoclosing & surrounding pairs --- extensions/clojure/clojure.configuration.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/extensions/clojure/clojure.configuration.json b/extensions/clojure/clojure.configuration.json index f0d6b7f37b8..004e1dbd95b 100644 --- a/extensions/clojure/clojure.configuration.json +++ b/extensions/clojure/clojure.configuration.json @@ -6,5 +6,17 @@ ["{", "}"], ["[", "]"], ["(", ")"] + ], + "autoClosingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""] + ], + "surroundingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""] ] } \ No newline at end of file