[rust] autoclosing & surrounding pairs

This commit is contained in:
Martin Aeschlimann 2016-04-21 22:56:50 +02:00
parent 64dff8e89c
commit 33edcc4633

View file

@ -7,5 +7,19 @@
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
]
}