Skip to content

Instantly share code, notes, and snippets.

@jsjoeio
Last active August 30, 2019 19:04
Show Gist options
  • Select an option

  • Save jsjoeio/c4ffb1eba3d5d44b1664df551b6a7c04 to your computer and use it in GitHub Desktop.

Select an option

Save jsjoeio/c4ffb1eba3d5d44b1664df551b6a7c04 to your computer and use it in GitHub Desktop.
VSCode Shortcuts to toggle between Activity Bar views/icons
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "cmd+p",
"command": "workbench.action.showAllSymbols"
},
{
"key": "cmd+t",
"command": "-workbench.action.showAllSymbols"
},
{
"key": "cmd+t",
"command": "workbench.action.quickOpen"
},
{
"key": "cmd+p",
"command": "-workbench.action.quickOpen"
},
{
"key": "cmd+t",
"command": "workbench.action.quickOpenNavigateNextInFilePicker",
"when": "inFilesPicker && inQuickOpen"
},
{
"key": "cmd+p",
"command": "-workbench.action.quickOpenNavigateNextInFilePicker",
"when": "inFilesPicker && inQuickOpen"
},
{
"key": "alt+cmd+2",
"command": "workbench.action.splitEditorRight"
},
{
"key": "ctrl+-",
"command": "-workbench.action.quickInputBack",
"when": "inQuickOpen"
},
{
"key": "ctrl+-",
"command": "-workbench.action.navigateBack"
},
{ "key": "ctrl+=", "command": "workbench.action.terminal.focus" },
{
"key": "ctrl+=",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{ "key": "ctrl+-", "command": "workbench.action.focusSideBar" },
{
"key": "ctrl+-",
"command": "workbench.action.focusActiveEditorGroup",
"when": "sideBarFocus"
},
{
"key": "ctrl+]",
"command": "workbench.action.nextSideBarView",
"when": "sideBarFocus"
},
{
"key": "ctrl+[",
"command": "workbench.action.previousSideBarView",
"when": "sideBarFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment