VSCode changes

This commit is contained in:
2024-12-23 11:29:19 +01:00
parent 6b77448355
commit 99e98b1766
2 changed files with 36 additions and 2 deletions

View File

@ -29,5 +29,37 @@
"key": "ctrl+z",
"command": "-undo",
"when": "notebookEditorFocused"
},
// Toggle between terminal and editor focus
{
"key": "ctrl+'",
"command": "workbench.action.terminal.focus"
},
{
"key": "ctrl+'",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "alt+right",
"command": "workbench.action.moveEditorToNextGroup"
},
{
"key": "ctrl+alt+right",
"command": "-workbench.action.moveEditorToNextGroup"
},
{
"key": "alt+left",
"command": "workbench.action.moveEditorToPreviousGroup"
},
{
"key": "ctrl+alt+left",
"command": "-workbench.action.moveEditorToPreviousGroup"
},
{
"key": "ctrl+shift+c",
"command": "-workbench.action.terminal.openNativeConsole",
"when": "!terminalFocus"
}
]