[vb] autoclosing & surrounding pairs

This commit is contained in:
Martin Aeschlimann 2016-04-21 23:05:07 +02:00
parent 630be96071
commit 6b91559bc1

View file

@ -7,7 +7,18 @@
["[", "]"],
["(", ")"],
["<", ">"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["<", ">"]
]
// autoClosingPairs: [ ['{', '}'], ['[', ']'], ['(', ')'], ['"', '"'], ['<', '>'], ],
}