Skip to content

Instantly share code, notes, and snippets.

@hazg
Created November 13, 2021 10:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hazg/bc126345ce6eb760bc0458a0d28b7278 to your computer and use it in GitHub Desktop.
Save hazg/bc126345ce6eb760bc0458a0d28b7278 to your computer and use it in GitHub Desktop.
Open / close focused file explorer in VSCode
// keybindings.json
[
{
"key": "capslock",
"command": "workbench.view.explorer",
"when": "!explorerViewletFocus"
},
{
"key": "capslock",
"command": "workbench.action.closeSidebar",
"when": "explorerViewletFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment