[f#] autoclosing and surrounding pair

This commit is contained in:
Martin Aeschlimann 2016-04-21 22:29:14 +02:00
parent f06b53a1da
commit 885a783837

View file

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