34 lines
866 B
JSON
34 lines
866 B
JSON
[
|
|
{
|
|
"key": "ctrl+shift+alt+r",
|
|
"command": "workbench.action.reloadWindow"
|
|
},
|
|
{
|
|
"key": "ctrl+pageup",
|
|
"command": "workbench.action.previousEditor"
|
|
},
|
|
{
|
|
"key": "ctrl+pagedown",
|
|
"command": "workbench.action.nextEditor"
|
|
},
|
|
{
|
|
"key": "ctrl+shift+up",
|
|
"command": "editor.action.moveLinesUpAction",
|
|
"when": "editorTextFocus && !editorReadonly"
|
|
},
|
|
{
|
|
"key": "ctrl+shift+down",
|
|
"command": "editor.action.moveLinesDownAction",
|
|
"when": "editorTextFocus && !editorReadonly"
|
|
},
|
|
{
|
|
"key": "shift+alt+up",
|
|
"command": "editor.action.insertCursorAbove",
|
|
"when": "editorTextFocus"
|
|
},
|
|
{
|
|
"key": "shift+alt+down",
|
|
"command": "editor.action.insertCursorBelow",
|
|
"when": "editorTextFocus"
|
|
}
|
|
]
|