mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 04:36:23 +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'
```
34 lines
467 B
JSON
34 lines
467 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "#",
|
|
"blockComment": [ "###", "###" ]
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"]
|
|
],
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"],
|
|
[" ", " "]
|
|
],
|
|
"folding": {
|
|
"offSide": true,
|
|
"markers": {
|
|
"start": "^\\s*#region\\b",
|
|
"end": "^\\s*#endregion\\b"
|
|
}
|
|
}
|
|
}
|