dotfiles/vscode/keybindings.json
tactonbishop 42fca178cc Changes
2022-08-30 09:16:26 +01:00

53 lines
1 KiB
JSON

// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+h",
"command": "workbench.action.navigateLeft"
},
{
"key": "ctrl+l",
"command": "workbench.action.navigateRight"
},
{
"key": "ctrl+k",
"command": "workbench.action.navigateUp"
},
{
"key": "ctrl+j",
"command": "workbench.action.navigateDown"
},
{
"key": "ctrl+m",
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+n",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+f",
"command": "actions.find"
},
{
"key": "ctrl+left",
"command": "workbench.action.toggleSidebarVisibility"
},
{
"key": "ctrl+b",
"command": "-workbench.action.toggleSidebarVisibility"
},
{
"key": "ctrl+shift+g",
"command": "workbench.view.scm",
"when": "workbench.scm.active"
},
{
"key": "ctrl+shift+g",
"command": "-workbench.view.scm",
"when": "workbench.scm.active"
},
{
"key": "ctrl+right",
"command": "workbench.action.toggleAuxiliaryBar"
}
]