Skip to content

Instantly share code, notes, and snippets.

@remainstheday
Created August 31, 2022 02:01
Show Gist options
  • Save remainstheday/42fa077ef52f518e5e687108d2c5e497 to your computer and use it in GitHub Desktop.
Save remainstheday/42fa077ef52f518e5e687108d2c5e497 to your computer and use it in GitHub Desktop.
vscode keybindings
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "cmd+0",
"command": "-workbench.action.focusSideBar"
},
{
"key": "cmd+0",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+`",
"command": "-workbench.action.terminal.toggleTerminal"
},
{
"key": "cmd+k shift+cmd+right",
"command": "-workbench.action.moveEditorRightInGroup"
},
{
"key": "alt+cmd+2",
"command": "workbench.action.moveEditorToRightGroup"
},
{
"key": "cmd+1",
"command": "-workbench.action.focusFirstEditorGroup"
},
{
"key": "cmd+b",
"command": "-workbench.action.toggleSidebarVisibility"
},
{
"key": "cmd+d",
"command": "-editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "cmd+d",
"command": "editor.action.duplicateSelection"
},
{
"key": "shift shift",
"command": "workbench.action.quickOpen"
},
{
"key": "cmd+1",
"command": "workbench.view.explorer"
},
{
"key": "cmd+1",
"command": "-workbench.view.explorer"
},
{
"key": "cmd+1",
"command": "workbench.action.toggleSidebarVisibility",
"when": "explorerViewletVisible"
},
{
"key": "cmd+1",
"command": "-workbench.action.toggleSidebarVisibility",
"when": "explorerViewletVisible"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment