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

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


当前回答

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

其他回答

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

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

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

截至目前(2018年3月)和1.21.0版本,您可以进入设置,搜索“缩放”并更改“编辑器”。mouseWheelZoom": false,默认为true。这将允许放大/缩小VS Code使用控制按钮和鼠标- ctrl + scrollUp/scrollDown。要改变VS Code的整体工作空间/屏幕的fontSize,请参考Alegozalves的回答。

我把我的设置为“编辑”。字形大小”:12,

保存文件,您将立即看到效果。

享受吧!

根据版本1.2的更新日志,增加了新的命令,可以放大和缩小字体,但可以放大和缩小整个UI。

更新日志:https://code.visualstudio.com/updates/v1_24 # _font-zoom-commands

使用以下键绑定替换默认的全局缩放动作:

在macOS:

{ "key": "cmd+numpad_add",      "command": "editor.action.fontZoomIn" },
{ "key": "shift+cmd+=",         "command": "editor.action.fontZoomIn" },
{ "key": "cmd+=",               "command": "editor.action.fontZoomIn" },
{ "key": "cmd+numpad_subtract", "command": "editor.action.fontZoomOut" },
{ "key": "shift+cmd+-",         "command": "editor.action.fontZoomOut" },
{ "key": "cmd+-",               "command": "editor.action.fontZoomOut" },
{ "key": "cmd+numpad0",         "command": "editor.action.fontZoomReset" },
{ "key": "cmd+0",               "command": "editor.action.fontZoomReset" },

在Windows和Linux上:

{ "key": "ctrl+numpad_add",      "command": "editor.action.fontZoomIn" },
{ "key": "shift+ctrl+=",         "command": "editor.action.fontZoomIn" },
{ "key": "ctrl+=",               "command": "editor.action.fontZoomIn" },
{ "key": "ctrl+numpad_subtract", "command": "editor.action.fontZoomOut" },
{ "key": "shift+ctrl+-",         "command": "editor.action.fontZoomOut" },
{ "key": "ctrl+-",               "command": "editor.action.fontZoomOut" },
{ "key": "ctrl+numpad0",         "command": "editor.action.fontZoomReset" },
{ "key": "ctrl+0",               "command": "editor.action.fontZoomReset" },