Change C++ auto closing comment start from /* to /**

Fixes #77008
This commit is contained in:
Alex Ross
2019-07-10 10:06:05 +02:00
parent 95f0923b94
commit 0fa33a2cfb

View File

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