Skip to content

Instantly share code, notes, and snippets.

@aliemir
Created January 1, 2021 16:55
Show Gist options
  • Save aliemir/fd756be76934878378b0a76a31f03f18 to your computer and use it in GitHub Desktop.
Save aliemir/fd756be76934878378b0a76a31f03f18 to your computer and use it in GitHub Desktop.
my vscode custom keybindings to switch between sidebar views and toggle focus between editor and the sidebar because activity bar sucks.
[
{
"key": "ctrl+]",
"command": "workbench.action.nextSideBarView"
},
{
"key": "ctrl+[",
"command": "workbench.action.previousSideBarView"
},
{
"key": "ctrl+[IntlBackslash]",
"when": "editorTextFocus",
"command": "workbench.action.focusSideBar"
},
{
"key": "ctrl+[IntlBackslash]",
"when": "sideBarFocus",
"command": "workbench.action.focusLastEditorGroup"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment