Unnamed repository; edit this file 'description' to name the repository.
Remove autoclosing pair <> in rustdoc
Lukas Wirth 2024-02-12
parent d24db9f · commit c6bb352
-rw-r--r--editors/code/language-configuration-rustdoc.json3
1 files changed, 1 insertions, 2 deletions
diff --git a/editors/code/language-configuration-rustdoc.json b/editors/code/language-configuration-rustdoc.json
index 8474180e7b..c905d3b606 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": [
["(", ")"],