robertocamberos
robertocamberos

Reputation: 61

How to zoom out of only the terminal in vs code?

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: 5

Views: 5440

Answers (3)

Mark
Mark

Reputation: 182911

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: 4

robertocamberos
robertocamberos

Reputation: 61

  1. You can adjust terminal font size by typing "terminal font size" after clicking the settings icon in vs code
  2. You can also delete this line "terminal.integrated.fontSize": 60 from the settings.json file that might be in your .vscode folder. This was the solution to my problem enter image description here

Upvotes: 1

Harshal Limaye
Harshal Limaye

Reputation: 302

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.

enter image description here

Upvotes: 9

Related Questions