Last active
August 30, 2019 19:04
-
-
Save jsjoeio/c4ffb1eba3d5d44b1664df551b6a7c04 to your computer and use it in GitHub Desktop.
VSCode Shortcuts to toggle between Activity Bar views/icons
This file contains hidden or 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
| // 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