How to change environment's font size?

后端 未结 19 1304
有刺的猬
有刺的猬 2020-11-30 18:03

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\

19条回答
  •  一向
    一向 (楼主)
    2020-11-30 18:24

    (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
    }
    

提交回复
热议问题