diff options
| author | Lukas Wirth <lukastw97@gmail.com> | 2024-01-30 19:46:00 +0100 |
|---|---|---|
| committer | Lukas Wirth <lukastw97@gmail.com> | 2024-01-30 20:04:37 +0100 |
| commit | 8f1a253a4c42c206d33883ae9826f4c505425a67 (patch) | |
| tree | ff6bb775b50cdcf73ae7af324add11077ab19a88 | |
| parent | 63123ab4081374853d8ec76e0d6c05b331276703 (diff) | |
| download | rust-8f1a253a4c42c206d33883ae9826f4c505425a67.tar.gz rust-8f1a253a4c42c206d33883ae9826f4c505425a67.zip | |
internal: Undo special bracket classification for attributes in vscode config
| -rw-r--r-- | editors/code/language-configuration.json | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/editors/code/language-configuration.json b/editors/code/language-configuration.json index a2af8b51a90..1c348b63f1a 100644 --- a/editors/code/language-configuration.json +++ b/editors/code/language-configuration.json @@ -6,9 +6,7 @@ "brackets": [ ["{", "}"], ["[", "]"], - ["(", ")"], - ["#[", "]"], - ["#![", "]"] + ["(", ")"] ], "colorizedBracketPairs": [ ["{", "}"], @@ -19,8 +17,6 @@ { "open": "{", "close": "}" }, { "open": "[", "close": "]" }, { "open": "(", "close": ")" }, - { "open": "#[", "close": "]" }, - { "open": "#![", "close": "]" }, { "open": "\"", "close": "\"", "notIn": ["string"] }, { "open": "/*", "close": " */" }, { "open": "`", "close": "`", "notIn": ["string"] } |
