Skip to content

Commit

Permalink
Auto merge of #16820 - lnicola:no-string-comment-autoclose, r=lnicola
Browse files Browse the repository at this point in the history
fix: Don't auto-close block comments in strings

Fixes #16815
  • Loading branch information
bors committed Mar 12, 2024
2 parents d3e6fea + cb6c26b commit 9bc1eb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editors/code/language-configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{ "open": "[", "close": "]" },
{ "open": "(", "close": ")" },
{ "open": "\"", "close": "\"", "notIn": ["string"] },
{ "open": "/*", "close": " */" },
{ "open": "/*", "close": " */", "notIn": ["string"] },
{ "open": "`", "close": "`", "notIn": ["string"] }
],
"autoCloseBefore": ";:.,=}])> \n\t",
Expand Down

0 comments on commit 9bc1eb4

Please sign in to comment.