Skip to content

Commit 9a832c4

Browse files
committed
Auto merge of #16453 - Veykril:brackets, r=Veykril
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
2 parents d923d62 + 8f1a253 commit 9a832c4

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

editors/code/language-configuration.json

+1-5
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
"brackets": [
77
["{", "}"],
88
["[", "]"],
9-
["(", ")"],
10-
["#[", "]"],
11-
["#![", "]"]
9+
["(", ")"]
1210
],
1311
"colorizedBracketPairs": [
1412
["{", "}"],
@@ -19,8 +17,6 @@
1917
{ "open": "{", "close": "}" },
2018
{ "open": "[", "close": "]" },
2119
{ "open": "(", "close": ")" },
22-
{ "open": "#[", "close": "]" },
23-
{ "open": "#![", "close": "]" },
2420
{ "open": "\"", "close": "\"", "notIn": ["string"] },
2521
{ "open": "/*", "close": " */" },
2622
{ "open": "`", "close": "`", "notIn": ["string"] }

0 commit comments

Comments
 (0)