Add /** */ to cpp/language-configurations.json (#211202)

This fixes the issue at https://github.com/microsoft/vscode-cpptools/issues/12249 .

This was removed in 98fa77a679 .

Then PR https://github.com/microsoft/vscode/pull/160357 added /* */ autoClosingPair.
This commit is contained in:
Sean McManus 2024-05-15 02:10:15 -07:00 committed by GitHub
parent ffb2581f08
commit 739d4803af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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