[swift] autoclosing & surrounding pairs

This commit is contained in:
Martin Aeschlimann 2016-04-21 23:01:54 +02:00
parent c049bd753f
commit 15d468af0f

View file

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