How do I disable tabs in Visual Studio Code?

后端 未结 3 1998
你的背包
你的背包 2021-02-06 21:21

With the new version of Visual Studio Code, tabs are rendered by default. How do I disable / hide them as I really liked the previous behavior without any tabs?

3条回答
  •  抹茶落季
    2021-02-06 21:59

    You can use the plugin "Custom CSS & JS" and use the following code

    .title.show-file-icons {
        display: none !important;
    }
    

提交回复
热议问题