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's font size but I couldn't find how to change the environment font size so I wonder if you can change it somehow
According to the changelog of version 1.2, new commands were added to zoom in and out only the font but the entire UI.
Changelog: https://code.visualstudio.com/updates/v1_24#_font-zoom-commands
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 :
Now just save and close the file.
In above code, 16 represents the font size. Increase of Decrease as per your wish.
Try playing around with a combination of the following user settings:
Currently it is not possible to change the font family or size outside the editor. You can however zoom the entire user interface in and out from the
View
menu.Update for our VS Code 1.0 release:
A newly introduced setting
window.zoomLevel
allows to persist the zoom level for good! It can have both negative and positive values to zoom in or out.In Visual Studio Code, by pressing Ctrl+ and Ctrl- you can change the overall font size of the IDE. This helps faster than changing settings in every session. Hope it helps...
After Pressing Control+Shift+P as suggested by @Edwin: