Last active
November 27, 2025 11:17
-
-
Save call0fcode/df9274f4eda985b5b76338c230b86ad5 to your computer and use it in GitHub Desktop.
This is a useful shortcuts config for VSCode-like editors which enables 2 actions I use a lot when usen the IDE: toggle the terminal and the file explorer by just pressing twice ctrl, alt or shift .. pretty handy!! π
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 defaults | |
| [ | |
| { | |
| "key": "alt alt", | |
| "command": "workbench.action.terminal.toggleTerminal" | |
| }, | |
| { | |
| "key": "ctrl ctrl", | |
| "command": "workbench.action.terminal.toggleTerminal" | |
| }, | |
| { | |
| "key": "shift shift", | |
| "command": "workbench.action.toggleSidebarVisibility" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment