Files
dotfiles-new/VSCodium/User/keybindings.json
2025-06-26 01:00:00 +03:00

131 lines
2.7 KiB
JSON

// Empty
[
{
"key": "ctrl+alt+x",
"command": "git.unstageSelectedRanges"
},
{
"key": "ctrl+alt+d",
"command": "git.stageSelectedRanges"
},
{
"key": "ctrl+shift+oem_1",
"command": "-breadcrumbs.focus",
"when": "breadcrumbsPossible"
},
{
"key": "ctrl+shift+oem_1",
"command": "editor.fold",
"when": "editorTextFocus && foldingEnabled"
},
{
"key": "ctrl+shift+oem_4",
"command": "-editor.fold",
"when": "editorTextFocus && foldingEnabled"
},
{
"key": "ctrl+shift+oem_2",
"command": "-editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+oem_2",
"command": "editor.unfold",
"when": "editorTextFocus && foldingEnabled"
},
{
"key": "ctrl+shift+oem_6",
"command": "-editor.unfold",
"when": "editorTextFocus && foldingEnabled"
},
{
"key": "ctrl+shift+x",
"command": "-workbench.view.extensions"
},
{
"key": "ctrl+numpad_subtract",
"command": "-editor.fold",
"when": "editorFocus"
},
{
"key": "ctrl+shift+x",
"command": "editor.toggleFold",
"when": "editorTextFocus && foldingEnabled"
},
{
"key": "ctrl+k ctrl+l",
"command": "-editor.toggleFold",
"when": "editorTextFocus && foldingEnabled"
},
{
"key": "shift+f6",
"command": "-workbench.action.focusPreviousPart"
},
{
"key": "ctrl+shift+b",
"command": "-workbench.action.tasks.build"
},
{
"key": "ctrl+shift+b",
"command": "-editor.action.goToTypeDefinition",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+b",
"command": "git.checkout"
},
{
"key": "ctrl+shift+c",
"command": "copyFilePath",
"when": "!editorFocus && !terminalFocus"
},
{
"key": "ctrl+shift+c",
"command": "-copyFilePath",
"when": "!editorFocus"
},
{
"key": "ctrl+alt+n",
"command": "workbench.action.newWindow"
},
{
"key": "ctrl+shift+n",
"command": "-workbench.action.newWindow"
},
{
"key": "ctrl+alt+p",
"command": "workbench.action.openRecent"
},
{
"key": "ctrl+r",
"command": "-workbench.action.openRecent"
},
{
"key": "ctrl+e",
"command": "-workbench.action.quickOpen"
},
{
"key": "ctrl+e",
"command": "workbench.action.toggleActivityBarVisibility"
},
{
"key": "ctrl+alt+e",
"command": "workbench.action.toggleSidebarPosition"
},
{
"key": "f6",
"command": "-workbench.action.focusNextPart"
},
{
"key": "f6",
"command": "workbench.action.navigateEditorGroups"
},
{
"key": "ctrl+shift+l",
"command": "editor.action.insertSnippet",
"when": "editorTextFocus",
"args": {
"snippet": "console.log(\"${TM_SELECTED_TEXT}=\", ${TM_SELECTED_TEXT});"
}
}
]