vscode/extensions/coffeescript/language-configuration.json
Jim Hessin f347038e9b
Update language-configuration.json
A simple change allowing the user to surround selected code in spaces so instead of being stuck surrounding things tightly spaces can be used. i.e.:

```coffeescript
import {subobject} from 'somelibrary'
```

can quickly become:

```coffeescript
import { subobject } from 'somelibrary'
```
2018-02-27 05:10:38 -07:00

34 lines
467 B
JSON

{
"comments": {
"lineComment": "#",
"blockComment": [ "###", "###" ]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
[" ", " "]
],
"folding": {
"offSide": true,
"markers": {
"start": "^\\s*#region\\b",
"end": "^\\s*#endregion\\b"
}
}
}