mirror of
https://github.com/NotXia/dotfiles.git
synced 2025-12-16 18:52:21 +01:00
Codium config
This commit is contained in:
65
.config/VSCodium/User/keybindings.json
Normal file
65
.config/VSCodium/User/keybindings.json
Normal file
@ -0,0 +1,65 @@
|
||||
// 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"
|
||||
},
|
||||
|
||||
// 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"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user