From 13a51cea1df6e637c7da19dc88b67e5689479ba6 Mon Sep 17 00:00:00 2001 From: Blip blop Date: Sat, 3 Sep 2022 22:26:50 +0530 Subject: [PATCH] Updated support for #if and #endif --- extensions/cpp/language-configuration.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extensions/cpp/language-configuration.json b/extensions/cpp/language-configuration.json index 9a88814ff35..2bf73923d91 100644 --- a/extensions/cpp/language-configuration.json +++ b/extensions/cpp/language-configuration.json @@ -6,7 +6,8 @@ "brackets": [ ["{", "}"], ["[", "]"], - ["(", ")"] + ["(", ")"], + ["#if","#endif"], ], "autoClosingPairs": [ { "open": "[", "close": "]" },