diff --git a/README.md b/README.md index 7bdd8e2..8adc4a6 100644 --- a/README.md +++ b/README.md @@ -147,6 +147,7 @@ shift+escape | shift+escape | Hide active or last active window (Problems) | ✅ shift+escape | shift+escape | Hide active or last active window (Debug Console) | ✅ shift+escape | shift+escape | Hide active or last active window (Terminal) | ✅ shift+escape | shift+escape | Hide active or last active window (Panel) | N/A +ctrl+shift+' | ctrl+cmd+' | Maximize Tool Window (Problems, Output, Debug Console, Terminal | ✅ ctrl+shift+f4 | cmd+shift+f4 | Close active run/messages/find/... tab | N/A ctrl+g | cmd+l | Go to line | ✅ ctrl+e | cmd+e | Recent files popup | ✅ diff --git a/package.json b/package.json index c18a018..9687253 100644 --- a/package.json +++ b/package.json @@ -837,6 +837,13 @@ }, + { + "key": "ctrl+shift+[Quote]", + "mac": "cmd+shift+[Quote]", + "command": "workbench.action.toggleMaximizedPanel", + "when": "problemFocus || focusedView == 'workbench.panel.output' || inDebugRepl || terminalFocus", + "intellij": "Maximize Tool Window (Problems, Output, Debug Console, Terminal)" + }, { "key": "ctrl+g", "mac": "cmd+l", diff --git a/src/package-with-comment.json b/src/package-with-comment.json index 84c518d..5ca7cb0 100644 --- a/src/package-with-comment.json +++ b/src/package-with-comment.json @@ -1103,6 +1103,13 @@ "todo": "not worked intellij" }, */ + { + "key": "ctrl+shift+[Quote]", + "mac": "cmd+shift+[Quote]", + "command": "workbench.action.toggleMaximizedPanel", + "when": "problemFocus || focusedView == 'workbench.panel.output' || inDebugRepl || terminalFocus", + "intellij": "Maximize Tool Window (Problems, Output, Debug Console, Terminal)" + }, { "key": "ctrl+g", "mac": "cmd+l",