Skip to content

Commit

Permalink
Merge pull request #321 from kasecato/#105/maximizeToolWindow
Browse files Browse the repository at this point in the history
Implement #105 that Maxmize Tool Window
  • Loading branch information
kasecato authored Jan 28, 2024
2 parents cee74f7 + a325469 commit 87b27b7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | ✅
Expand Down
7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
7 changes: 7 additions & 0 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 87b27b7

Please sign in to comment.