Add vscode configs

This commit is contained in:
2024-08-29 21:00:02 +02:00
parent 7571fabeaf
commit 7e3d8acf8e
2 changed files with 260 additions and 0 deletions

View File

@ -0,0 +1,33 @@
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "f9",
"command": "-editor.debug.action.toggleBreakpoint",
"when": "debuggersAvailable && editorTextFocus"
},
{
"key": "ctrl+shift+c",
"command": "editor.action.commentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+a",
"command": "-editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+z",
"command": "-undo",
"when": "notebookEditorFocused"
}
]