Reputation: 995
Is there a way to make Vs-code on Mac only zoom the text/file pane of the window? When I hit Command ⌘+ to zoom, it'll zoom all of the window, ie. also the icons on the left hand side and the file pane on the left as well.
Compare these two screen shots, maybe ;)
I'd only like the source file (nfsd.sh in the screen shot) to be zoomed.
Upvotes: 22
Views: 15497
Reputation: 49
Ctrl
+,
to access settings.
Search for "zoom". Currently there is a mouse-wheel zoom checkbox for the text-editor text, and a separate checkbox for doing the same to the terminal window.
Upvotes: 0
Reputation: 455
On Mac, while pressing the command key, slide two fingers upward to zoom out. Slide downward to zoom in.
Upvotes: 0
Reputation: 427
Ctrl + Shift + P
Search 'Zoom'
Pick "Editor Font Zoom In"
Repeat till you get what you want.
Upvotes: 1
Reputation: 995
Answered in https://stackoverflow.com/a/41684631/5295392:
Out of Box solution for zoom in/out for text only:
You can use your mouse wheel to zoom in or zoom out only text in the text box.
Upvotes: 41
Reputation: 51
Open your settings.json
file and increase editor.fontSize
to increase the size of the text on the source file.
Upvotes: 5