about summary refs log tree commit diff
path: root/editors/code/language-configuration-rustdoc.json
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/language-configuration-rustdoc.json')
-rw-r--r--editors/code/language-configuration-rustdoc.json37
1 files changed, 0 insertions, 37 deletions
diff --git a/editors/code/language-configuration-rustdoc.json b/editors/code/language-configuration-rustdoc.json
deleted file mode 100644
index c905d3b6067..00000000000
--- a/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"
-    }
-}