Is there a way to change the environment font size in Visual Studio Code? Stuff like IntelliSense box, debug panel, file names, etc.
I know how to change the editor\
As of now (March 2018) & version 1.21.0, you can go to Settings, search for 'zoom' and change "editor.mouseWheelZoom": false
which is false by default to true
. This will allow to zoom in/out on VS Code using control button and mouse - ctrl + scrollUp/scrollDown
. For changing the fontSize
of the overall working space/screen of VS Code, refer to Alegozalves's answer above.
Press Ctrl and use the mouse wheel to zoom In or Out.
That's it.
Took me ages to work out what I'd accidentally done when my code window went huge:
Zoom out = Ctrl + Shift + , (comma)
Zoom in = Ctrl + Shift + . (full stop/period)
Not actually an answer to the posted question at all but I think someone like me will end up here because of the symptoms!
After Pressing Control+Shift+P as suggested by @Edwin:
A Simple approach to change the Font Size in Visual Studio Work Environment :
Go To : File -> Preferences -> Settings OR Press CTRL+, i.e. CTRL + COMMA.
This will open settings.json.
You can see 3 tabs there :
Go to User Settings and Add this :
{
"editor.fontSize": 16
}
Now just save and close the file.
In above code, 16 represents the font size. Increase of Decrease as per your wish.