23 lines
691 B
JSON
23 lines
691 B
JSON
// Place your key bindings in this file to override the defaults
|
|
[
|
|
{
|
|
"key": "shift+alt+up",
|
|
"command": "editor.action.copyLinesUpAction",
|
|
"when": "editorTextFocus && !editorReadonly"
|
|
},
|
|
{
|
|
"key": "ctrl+shift+alt+up",
|
|
"command": "-editor.action.copyLinesUpAction",
|
|
"when": "editorTextFocus && !editorReadonly"
|
|
},
|
|
{
|
|
"key": "shift+alt+down",
|
|
"command": "editor.action.copyLinesDownAction",
|
|
"when": "editorTextFocus && !editorReadonly"
|
|
},
|
|
{
|
|
"key": "ctrl+shift+alt+down",
|
|
"command": "-editor.action.copyLinesDownAction",
|
|
"when": "editorTextFocus && !editorReadonly"
|
|
}
|
|
] |