Created
November 13, 2021 10:09
-
-
Save hazg/bc126345ce6eb760bc0458a0d28b7278 to your computer and use it in GitHub Desktop.
Open / close focused file explorer in VSCode
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
// 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