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