How to change environment's font size?

后端 未结 19 1335
有刺的猬
有刺的猬 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:14

    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 :

    1. User Settings
    2. Workspace Settings
    3. Folder Settings

    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.

提交回复
热议问题