Reputation: 1977
In previous versions of VSCode there was an arrow icon at the top of the panel that could be used to maximize the panel, for instance the terminal. I do not know exactly in which version but that button is now gone and I'm unable to find an equivalent.
My question is: how can I maximize the terminal so it takes the whole VSCode window? Is there any way to get the button back?
Upvotes: 14
Views: 7826
Reputation: 1577
In version 1.83.1
(2023-10-10
), it is also possible via context menu on tab section in the panel. For example:
Upvotes: 0
Reputation: 370
To get the maximize arrow
on the left panel...
Left-click the bottom panel, then choose Move Panel Left
To get the maximize arrow
on the bottom panel...
First, press the Customize Layout
button
And select Center
Panel Alignment
Then move the panel back to the bottom.
Upvotes: 9
Reputation: 53
Panel can be maximized when centered. Example: If panel is not centered and the Maximize button is missing you also cannot use the command by hitting
Shift-Ctrl-P
View: Toggle Maximize Panel
Fix: run these commands (press Shift-Ctrl-P
then begin typing)
View: Set Panel alignment to Center
View: Toggle Maximize Panel
Blue and skube have the right answer to the original question. I cannot comment so summarize an answer using commands that can be pasted to verify.
Upvotes: 1
Reputation: 61
I also got the arrow disappeared, but i manage to bring it back by with command:workbench.action.alignPanelCenter
But i don't know i un align it in the first place
So maybe it will work with you
Upvotes: 6
Reputation: 1434
Which version of VSCode are you using, and in which OS?
On Mac, and with 1.65.2 (the most recent update by now), I have it in the right corner, near the X
button:
Now talking about shortcuts to make your life easier, there are 2 you should be aware of.
PS: Remember that to change any shortcuts, just go over VSCode Command Palette and type Keyboard Shortcuts
to change them.
There are no default shortcuts for those, in both Windows and Mac.
If you want to set any, the name of the shortcut is View: Toggle Maximized Panel
:
Now talking shortcuts, if you want to resize your terminal window, in Mac there's a native shortcut that allows to increase / decrease terminal size with Cmd + Ctrl
+ Arrow Up / Arrow Down
.
There's no default for Windows.
If you want to set / change those shortcuts, they are called Terminal: Resize Terminal Down
and Terminal: Resize Terminal Up
:
If you added your panel to either left or right, then the mark to make it fullscreen changes.
After clicking on the arrow below, it'll hide all your files and make the terminal to run in the whole screen for VSCode:
Upvotes: 16