Reputation: 31
Opened a new project in vs code and the terminal was zoomed in too much but everything else was at a normal zoom level. Not sure how to only zoom out of only the terminal in vs code
I tried clicking view > appearance > zoom out but the whole vs code window zoomed out instead of just the terminal
Upvotes: 3
Views: 5063
Reputation: 180825
And if you want a bindable command to zoom only the terminal in or out, that is coming in v1.87, see Add commands to zoom in/out/reset for terminal.
They will be:
workbench.action.terminal.fontZoomIn
"Terminal: Increase Font Size"
workbench.action.terminal.fontZoomOut
"Terminal: Decrease Font Size"
workbench.action.terminal.fontZoomReset
"Terminal: Reset Font Size"
Upvotes: 3
Reputation: 31
Upvotes: 0
Reputation: 292
You can change the font size of the terminal. Go to Preferences and search for Terminal font size. Under Features -> Terminal, you'll find the Terminal - Integrated: Font Size option. You can adjust its value based on your requirements to change the font size of the terminal.
Upvotes: 8