Activity Bar width in Visual Studio Code

后端 未结 5 1819
长发绾君心
长发绾君心 2021-02-03 23:01

Is there a way to selectively change the width of the Activity Bar in VSCode (v. 1.14)? I have a 1366×768 screen where every pixel counts, so I would like to make this bar narro

5条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-03 23:28

    Wanted to add more to Akelian answer:

    On Windows/Linux - File > Preferences > Settings
    On macOS - Code > Preferences > Settings

    {
      "window.zoomLevel": -1,
      "editor.fontSize": 13,
      "terminal.integrated.fontSize": 16,
      "workbench.activityBar.visible": false,
    }
    

    Setting false to "workbench.activityBar.visible" removes the sidebar completely

    https://code.visualstudio.com/docs/getstarted/settings

提交回复
热议问题