mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-27 13:16:59 +00:00
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'
```