Enable auto-close of multi-line comments in cpp (#160357)

This commit is contained in:
Colen Garoutte-Carson 2022-09-26 06:29:05 -07:00 committed by GitHub
parent 4caf63f62e
commit 33787082be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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