Open htbkoo opened 7 months ago
I had tried to search for similar issues with keywords like maximizeEditor
/ F12
/ expand
(reference: https://github.com/microsoft/vscode/issues/197227) but did not find anything directly related.
Please feel free to close this if this is actually a duplicate 🙇
Let me remove support for this key binding in the next release. To support IntelliJ behavior, we need to keep the previous sidebar and bottom panel state. In addition, focus control is also necessary because the focus moves to the terminal on its own when the bottom panel is the terminal.
{
"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 🙇
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!