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\
(VS Code 1.33.1 on Windows 7)
Zoom all (UI and editor): CTRL + +, CTRL + -.
Zoom editor: CTRL + Mouse Wheel.
See below how i fixed it.
As suggested by @Edwin: Pressing Control+Shift+P and then typing "settings" will allow you to easily find the user or workspace settings file.
My settings file is found here: "C:\Users\You_user\AppData\Roaming\Code\User\settings.json"
My file looks like this:
{
"editor.fontSize": 12,
"editor.suggestFontSize": 6,
"markdown.preview.fontSize": 0,
"terminal.integrated.fontSize": 10,
"window.zoomLevel": 0,
"workbench.sideBar.location": "left",
"editor.mouseWheelZoom": true
}