vscode/extensions/rust/language-configuration.json

31 lines
427 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": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""]
2016-04-21 20:56:50 +00:00
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
2018-08-23 08:43:49 +00:00
],
"folding": {
"markers": {
2018-08-28 14:31:41 +00:00
"start": "^\\s*#\\s*region\\b",
"end": "^\\s*#\\s*endregion\\b"
2018-08-23 08:43:49 +00:00
}
}
}