[bat] add autoclosing & sourrounding pairs

This commit is contained in:
Martin Aeschlimann 2016-04-21 22:18:13 +02:00
parent d043747187
commit 9150500aee

View file

@ -6,5 +6,17 @@
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""]
]
}