vscode/extensions/rust/language-configuration.json

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

35 lines
628 B
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"comments": {
"lineComment": "//",
"blockComment": [ "/*", "*/" ]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
2016-04-21 20:56:50 +00:00
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
{ "open": "\"", "close": "\"", "notIn": ["string"] }
2016-04-21 20:56:50 +00:00
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
2021-03-22 15:26:52 +00:00
["\"", "\""],
["<", ">"]
2018-08-23 08:43:49 +00:00
],
"indentationRules": {
"increaseIndentPattern": "^.*\\{[^}\"']*$|^.*\\([^\\)\"']*$",
"decreaseIndentPattern": "^\\s*(\\s*\\/[*].*[*]\\/\\s*)*[})]"
},
2018-08-23 08:43:49 +00:00
"folding": {
"markers": {
2018-08-28 14:49:34 +00:00
"start": "^\\s*//\\s*#?region\\b",
"end": "^\\s*//\\s*#?endregion\\b"
2018-08-23 08:43:49 +00:00
}
}
}