From a63786db231ec73c4627c7194056a57f35da3222 Mon Sep 17 00:00:00 2001 From: Alex Ross Date: Thu, 3 Dec 2020 15:53:01 +0100 Subject: [PATCH] Add paren, bracket, and brace to autoclosing pairs for make Fixes #89191 --- extensions/make/language-configuration.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/extensions/make/language-configuration.json b/extensions/make/language-configuration.json index f3c19d01120..82645b84dfb 100644 --- a/extensions/make/language-configuration.json +++ b/extensions/make/language-configuration.json @@ -17,6 +17,18 @@ ] ], "autoClosingPairs": [ + [ + "{", + "}" + ], + [ + "[", + "]" + ], + [ + "(", + ")" + ], { "open": "'", "close": "'",