about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/editors/code/language-configuration-rustdoc.json
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-03-06 18:51:11 +0000
committerbors <bors@rust-lang.org>2024-03-06 18:51:11 +0000
commit305d2b0f5c7e8081ab21f78e2d53ed8f84aebecd (patch)
treee8c9415143a6307f929727db3da941edda124d78 /src/tools/rust-analyzer/editors/code/language-configuration-rustdoc.json
parent033c1e00b0fda6616c1442ecf40bb79da8c5db20 (diff)
parent3c2318c0b21e2f4473c2465a4d9481ccd21906dd (diff)
Auto merge of #3363 - RalfJung:rustup, r=RalfJung
Rustup

This should finally work again :)
Diffstat (limited to 'src/tools/rust-analyzer/editors/code/language-configuration-rustdoc.json')
-rw-r--r--src/tools/rust-analyzer/editors/code/language-configuration-rustdoc.json37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/tools/rust-analyzer/editors/code/language-configuration-rustdoc.json b/src/tools/rust-analyzer/editors/code/language-configuration-rustdoc.json
deleted file mode 100644
index c905d3b6067..00000000000
--- a/src/tools/rust-analyzer/editors/code/language-configuration-rustdoc.json
+++ /dev/null
@@ -1,37 +0,0 @@
-{
-    "comments": {
-        "blockComment": ["<!--", "-->"]
-    },
-    "brackets": [
-        ["{", "}"],
-        ["[", "]"],
-        ["(", ")"]
-    ],
-    "colorizedBracketPairs": [],
-    "autoClosingPairs": [
-        { "open": "{", "close": "}" },
-        { "open": "[", "close": "]" },
-        { "open": "(", "close": ")" }
-    ],
-    "surroundingPairs": [
-        ["(", ")"],
-        ["[", "]"],
-        ["`", "`"],
-        ["_", "_"],
-        ["*", "*"],
-        ["{", "}"],
-        ["'", "'"],
-        ["\"", "\""]
-    ],
-    "folding": {
-        "offSide": true,
-        "markers": {
-            "start": "^\\s*<!--\\s*#?region\\b.*-->",
-            "end": "^\\s*<!--\\s*#?endregion\\b.*-->"
-        }
-    },
-    "wordPattern": {
-        "pattern": "(\\p{Alphabetic}|\\p{Number}|\\p{Nonspacing_Mark})(((\\p{Alphabetic}|\\p{Number}|\\p{Nonspacing_Mark})|[_])?(\\p{Alphabetic}|\\p{Number}|\\p{Nonspacing_Mark}))*",
-        "flags": "ug"
-    }
-}