From 6bf8bf88df69fd2df9db93988bd82bc8494bd93f Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Thu, 21 Apr 2016 23:09:49 +0200 Subject: [PATCH] [yaml] autoclosing & surrounding pairs --- extensions/yaml/yaml.configuration.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/extensions/yaml/yaml.configuration.json b/extensions/yaml/yaml.configuration.json index 80289039213..cab4f6602ff 100644 --- a/extensions/yaml/yaml.configuration.json +++ b/extensions/yaml/yaml.configuration.json @@ -6,5 +6,19 @@ ["{", "}"], ["[", "]"], ["(", ")"] + ], + "autoClosingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"] + ], + "surroundingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"] ] } \ No newline at end of file