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'
```
This commit is contained in:
Jim Hessin 2018-02-27 05:10:38 -07:00 committed by GitHub
parent d7df300c7a
commit f347038e9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,8 @@
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
["'", "'"],
[" ", " "]
],
"folding": {
"offSide": true,