How to change environment's font size?

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

    As of mid 2017 To quickly get to the settings files press ctrl + shift + p and enter settings, there you will find the user settings and the workspace settings, be aware that the workspace settings will override the user settings, so it's better to use the latter directly to make it a global change (workspace settings will create a folder in your project root), from there you will have the option to add the option "editor.fontSize": 14 to your settings as a quick suggestion, but you can do it yourself and change the value to your preferred font size.

    To sum it up:

    1. ctrl + shift + p

    2. select "user settings"

    3. add "editor.fontSize": 14

提交回复
热议问题