diff options
| author | Lukas Wirth <lukastw97@gmail.com> | 2024-02-12 16:01:14 +0100 |
|---|---|---|
| committer | Lukas Wirth <lukastw97@gmail.com> | 2024-02-12 16:01:14 +0100 |
| commit | c6bb35269c1fe4adc60cbfdab1cc819ba4cb35cf (patch) | |
| tree | 64d93ade0d2a93d9003f31cc274044e26086d857 | |
| parent | d24db9f2c394c9b558908dd832fbe9be26c24a85 (diff) | |
| download | rust-c6bb35269c1fe4adc60cbfdab1cc819ba4cb35cf.tar.gz rust-c6bb35269c1fe4adc60cbfdab1cc819ba4cb35cf.zip | |
Remove autoclosing pair <> in rustdoc
| -rw-r--r-- | editors/code/language-configuration-rustdoc.json | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/editors/code/language-configuration-rustdoc.json b/editors/code/language-configuration-rustdoc.json index 8474180e7b0..c905d3b6067 100644 --- a/editors/code/language-configuration-rustdoc.json +++ b/editors/code/language-configuration-rustdoc.json @@ -11,8 +11,7 @@ "autoClosingPairs": [ { "open": "{", "close": "}" }, { "open": "[", "close": "]" }, - { "open": "(", "close": ")" }, - { "open": "<", "close": ">", "notIn": ["string"] } + { "open": "(", "close": ")" } ], "surroundingPairs": [ ["(", ")"], |
