Files
vscode/extensions/coffeescript/coffeescript.configuration.json
Matt Lott c5744ae430 Add CoffeeScript quote surroundingPairs
Updating language configuration to support autoClosingPairs and surroundingPairs settings.

Related to #3418
2016-04-16 21:55:47 +12:00

25 lines
334 B
JSON

{
"comments": {
"lineComment": "#",
"blockComment": [ "###", "###" ]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
]
}