mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
f347038e9b
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' ```
33 lines
467 B
JSON
33 lines
467 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "#",
|
|
"blockComment": [ "###", "###" ]
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"]
|
|
],
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"],
|
|
[" ", " "]
|
|
],
|
|
"folding": {
|
|
"offSide": true,
|
|
"markers": {
|
|
"start": "^\\s*#region\\b",
|
|
"end": "^\\s*#endregion\\b"
|
|
}
|
|
}
|
|
}
|