[shellscript] autoclosing and surrounding pairs

This commit is contained in:
Martin Aeschlimann 2016-04-21 23:00:22 +02:00
parent 0948230a26
commit c049bd753f

View file

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