[go] autoclosing & surrounding pairs

This commit is contained in:
Martin Aeschlimann 2016-04-21 22:34:15 +02:00
parent 885a783837
commit c5adaf629a

View file

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