Skip to content

Commit

Permalink
Don't auto-close block comments in strings
Browse files Browse the repository at this point in the history
  • Loading branch information
lnicola committed Mar 12, 2024
1 parent 03d2d90 commit cb6c26b
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 cb6c26b

Please sign in to comment.