skip to Main Content

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

2

Answers


  1. Chosen as BEST ANSWER
    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

  2. 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

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search