mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 04:09:28 +00:00
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:
@@ -20,7 +20,8 @@
|
||||
["[", "]"],
|
||||
["(", ")"],
|
||||
["\"", "\""],
|
||||
["'", "'"]
|
||||
["'", "'"],
|
||||
[" ", " "]
|
||||
],
|
||||
"folding": {
|
||||
"offSide": true,
|
||||
|
||||
Reference in New Issue
Block a user