Skip to content

Instantly share code, notes, and snippets.

@call0fcode
Last active November 27, 2025 11:17
Show Gist options
  • Select an option

  • Save call0fcode/df9274f4eda985b5b76338c230b86ad5 to your computer and use it in GitHub Desktop.

Select an option

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!! πŸ˜ƒ
// 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