rust/editors/code/language-configuration-rustdoc.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1009 B
JSON
Raw Normal View History

2024-01-10 07:55:41 -06:00
{
"comments": {
2024-01-16 07:20:22 -06:00
"blockComment": ["<!--", "-->"]
2024-01-10 07:55:41 -06:00
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
2024-02-12 08:58:17 -06:00
"colorizedBracketPairs": [],
2024-01-10 07:55:41 -06:00
"autoClosingPairs": [
2024-01-16 07:20:22 -06:00
{ "open": "{", "close": "}" },
{ "open": "[", "close": "]" },
{ "open": "(", "close": ")" },
2024-02-12 08:58:17 -06:00
{ "open": "<", "close": ">", "notIn": ["string"] }
2024-01-10 07:55:41 -06:00
],
"surroundingPairs": [
["(", ")"],
["[", "]"],
["`", "`"],
["_", "_"],
["*", "*"],
["{", "}"],
["'", "'"],
["\"", "\""]
],
"folding": {
"offSide": true,
"markers": {
"start": "^\\s*<!--\\s*#?region\\b.*-->",
"end": "^\\s*<!--\\s*#?endregion\\b.*-->"
}
},
2024-02-12 08:58:17 -06:00
"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"
}
2024-01-10 07:55:41 -06:00
}