Add CoffeeScript quote surroundingPairs

Updating language configuration to support autoClosingPairs and surroundingPairs settings.

Related to #3418
This commit is contained in:
Matt Lott
2016-04-16 21:55:47 +12:00
parent 36a964b59d
commit c5744ae430
3 changed files with 36 additions and 5 deletions

View File

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