Skip to content

Commit

Permalink
Auto merge of #16453 - Veykril:brackets, r=Veykril
Browse files Browse the repository at this point in the history
internal: Undo special bracket classification for attributes in vscode config

I changed this thinking the `#` could be considered part of the bracket but on second though I don't think that's quite right in general.

Fixes #16449
  • Loading branch information
bors committed Jan 30, 2024
2 parents d923d62 + 8f1a253 commit 9a832c4
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions editors/code/language-configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"],
["#[", "]"],
["#![", "]"]
["(", ")"]
],
"colorizedBracketPairs": [
["{", "}"],
Expand All @@ -19,8 +17,6 @@
{ "open": "{", "close": "}" },
{ "open": "[", "close": "]" },
{ "open": "(", "close": ")" },
{ "open": "#[", "close": "]" },
{ "open": "#![", "close": "]" },
{ "open": "\"", "close": "\"", "notIn": ["string"] },
{ "open": "/*", "close": " */" },
{ "open": "`", "close": "`", "notIn": ["string"] }
Expand Down

0 comments on commit 9a832c4

Please sign in to comment.