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?
Visual Studio Code v1.27+ now includes a GUI for editing settings:
Alternatively, you could just pop into Zen Mode, which has tabs hidden by default.
Editor Tabs make their appearance starting with Visual Studio Code version 1.3 (June 2016) and are enabled by default. To disable editor tabs:
"workbench.editor.showTabs": false,
entry (if this is the last entry, omit the trailing comma).You can use the plugin "Custom CSS & JS" and use the following code
.title.show-file-icons {
display: none !important;
}