在Visual Studio Code中有办法改变环境字体大小吗?像智能感知框,调试面板,文件名等。

我知道如何改变编辑器的字体大小,但我不知道如何改变环境字体大小。所以我想知道你是否能改变它。


当前回答

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.

总结一下:

CTRL + shift + p 选择“用户设置” 添加”编辑器。字形大小”:14

其他回答

只是复制”编辑。fontSize": 18到你的设置。Json的编辑器。

按Control+Shift+P,然后输入“settings”,你就可以轻松找到用户或工作区设置文件。

在Visual Studio Code中,通过按Ctrl+和Ctrl-可以改变IDE的整体字体大小。 这比在每个会话中更改设置更快。

同时按Ctrl、Shift、P键,出现菜单,搜索编辑器放大。 选择后,字体会变得更大的程度。

重复这个步骤,直到你达到你想要的字体大小。

在Visual Studio工作环境中更改字体大小的简单方法:

进入:File -> Preferences -> Settings OR按CTRL+,即CTRL+逗号。

这将打开settings.json。

你可以看到3个标签:

用户设置 工作空间设置 文件夹设置

进入用户设置,添加如下内容:

{
"editor.fontSize": 16
}

现在只需保存并关闭文件。

在上面的代码中,16代表字体大小。根据您的意愿增加或减少。

目前不可能在编辑器之外更改字体族或大小。不过,您可以通过“视图”菜单放大或缩小整个用户界面。

VS Code 1.0版本更新:

新引入的设置窗口。zoomLevel允许持续缩放级别为好!它可以有负数和正数来放大或缩小。