mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
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:
@@ -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": [
|
||||
["{", "}"],
|
||||
|
||||
Reference in New Issue
Block a user