Skip to content

Commit 739d480

Browse files
authored
Add /** */ to cpp/language-configurations.json (microsoft#211202)
This fixes the issue at microsoft/vscode-cpptools#12249 . This was removed in microsoft@98fa77a . Then PR microsoft#160357 added /* */ autoClosingPair.
1 parent ffb2581 commit 739d480

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

extensions/cpp/language-configuration.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
{ "open": "(", "close": ")" },
1515
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
1616
{ "open": "\"", "close": "\"", "notIn": ["string"] },
17-
{ "open": "/*", "close": "*/", "notIn": ["string", "comment"] }
17+
{ "open": "/*", "close": "*/", "notIn": ["string", "comment"] },
18+
{ "open": "/**", "close": " */", "notIn": ["string"] }
1819
],
1920
"surroundingPairs": [
2021
["{", "}"],

0 commit comments

Comments
 (0)