From 6537fc30ca4f45d6e73ca40110468ca4bbcf9e60 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Thu, 21 Apr 2016 22:25:04 +0200 Subject: [PATCH] [cpp] autoclosing and surrounding pairs --- extensions/cpp/cpp.configuration.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/extensions/cpp/cpp.configuration.json b/extensions/cpp/cpp.configuration.json index 7c3c76c3c46..2c89643f396 100644 --- a/extensions/cpp/cpp.configuration.json +++ b/extensions/cpp/cpp.configuration.json @@ -7,5 +7,19 @@ ["{", "}"], ["[", "]"], ["(", ")"] + ], + "autoClosingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"] + ], + "surroundingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + ["\"", "\""], + ["'", "'"] ] } \ No newline at end of file -- GitLab