dotfiles/home/apps/vscode/keybindings.json

46 lines
952 B
JSON
Raw Normal View History

[
{
"key": "alt+x",
"command": "workbench.action.closeActiveEditor",
"when": "editorFocus"
},
{
"key": "alt+,",
2023-11-02 17:09:35 +01:00
"command": "workbench.action.previousEditor"
},
{
"key": "alt+.",
2023-11-02 17:09:35 +01:00
"command": "workbench.action.nextEditor"
},
{
"key": "shift+cmd+]",
"command": "-workbench.action.nextEditor",
"when": "editorFocus"
},
{
"key": "shift+cmd+[",
"command": "-workbench.action.previousEditor",
"when": "editorFocus"
},
{
"key": "ctrl+t",
2023-11-02 17:09:35 +01:00
"command": "workbench.action.terminal.focus",
"when": "editorTextFocus"
},
{
"key": "ctrl+t",
2023-11-02 17:09:35 +01:00
"command": "workbench.action.terminal.toggleTerminal",
"when": "terminalFocus"
},
{
"key": "ctrl+n",
"command": "workbench.files.action.focusFilesExplorer",
"when": "editorTextFocus"
},
{
"key": "ctrl+n",
2023-11-02 17:09:35 +01:00
"command": "workbench.action.toggleSidebarVisibility",
"when": "filesExplorerFocus"
}
]