Allow multi-line comment auto-closing for C++ files

Fixes #72801
This commit is contained in:
Dan McCarthy 2019-05-21 05:35:13 -05:00 committed by Alex Ross
parent df08d729c6
commit 728c6a68ba

View file

@ -13,7 +13,8 @@
{ "open": "{", "close": "}" },
{ "open": "(", "close": ")" },
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
{ "open": "\"", "close": "\"", "notIn": ["string"] }
{ "open": "\"", "close": "\"", "notIn": ["string"] },
{ "open": "/*", "close": " */", "notIn": ["string", "comment"] }
],
"surroundingPairs": [
["{", "}"],