Created
January 1, 2021 16:55
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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