Is there any shortcut to resize explorer panel in VS Code?
By the way, I know how to search for keyboards in vs code and I have already implemented some resizing functionalities for terminal, editor panel and other stuff. I specifically wanna know if there is any shortcut for resizing the Explorer View and not anything else.
From what I know, there isn't a keyboard shortcut to resize a specific view regardless of what view is currently focused (at least- not at the time of this writing), but there exist keyboard shortcut commands to resize the currently focused view: workbench.action.increaseViewSize
and workbench.action.decreaseViewSize
. What you can do is bind something to those commands, and then focus the Explorer View (bound by default to ctrl/cmd+shift+e), and then use your keyboard shortcut.