vscode/extensions/rust/rust.configuration.json
J/A f2ff136134 Do not autoclose '
`'` is used to denote a lifetime, as in `fn foo<'a>(bar: &'a Baz) { ...` and it isn't helpful to have it automatically closed.
2016-05-14 23:03:47 -05:00

25 lines
320 B
JSON

{
"comments": {
"lineComment": "//",
"blockComment": [ "/*", "*/" ]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
]
}