-
-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ctrl-Shift-F12
results in command 'workbench.action.maximizeEditor' not found
#341
Comments
I had tried to search for similar issues with keywords like Please feel free to close this if this is actually a duplicate 🙇 |
Let me remove support for this key binding in the next release. {
"key": "ctrl+shift+f12",
"mac": "cmd+shift+f12",
"command": "runCommands",
"args": {
"commands": [
"workbench.action.toggleSidebarVisibility",
"workbench.action.togglePanel"
]
},
"when": "(sideBarVisible && panelVisible) || (!sideBarVisible && !panelVisible)",
"intellij": "Toggle maximizing editor"
}, |
Thanks a lot for your prompt reply and sharing the information 🙇 |
Removed #341 that Ctrl-Shift-F12 results in command 'workbench.action…
There's a few extensions that try to achieve this, but don't do it quite right, so I wrote my own: Sidebars. I didn't think it quite fit here since it requires maintaining some state and currently does so using undocumented/private command calls. |
First of all, thanks a lot for creating this extension which is extremely helpful for users who are used to Keybindings from IntelliJ IDEA! 👍
Recently, I had bumped into this problem with a very frequently used shortcut - the
Ctrl-Shift-F12
to maximize editor (and hide all the panels) - instead of maximizing the editor, I just get this error message:command 'workbench.action.maximizeEditor' not found
Are there any configuration changes I need to (I have not used VS Code in a while, so probably something has changed and ruined the whole setup after all the auto-update, which I should have just turned off completely 🤦 )
Let me know if you need more information. 💪
Thank you!
The text was updated successfully, but these errors were encountered: