How to change font size in VS Code sidebar?

后端 未结 4 615
深忆病人
深忆病人 2020-12-30 18:17

Querying for fontsize in User Settings window yields only settings for:

  • editor panes,
  • suggest widget,
  • markdown pre
4条回答
  •  独厮守ぢ
    2020-12-30 19:09

    Just want to add to the discussion, If you set:

    "window.zoomLevel": "your number",
    

    In my case I started with zero, you can use that as sort of a baseline:

    "editor.fontSize": 14,
    "editor.tabSize": 2,
    "terminal.integrated.fontSize": 14,
    "window.zoomLevel": 0,
    "[Log]": {
      "editor.fontSize": 14
    },
    

    And then tweaked until I was happy. Hope this helps!

提交回复
热议问题