fixes #5617: [ruby] auto-close for quotes in ruby not working

This commit is contained in:
Martin Aeschlimann 2016-04-21 22:11:22 +02:00
parent 79b25eaac8
commit 623de4af98

View file

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