VS Code 1.84 answer
It's coming. You can thank Benjamin Simmonds for their Pull Request, Allow to hide editor title section entirely (tabs, breadcrumbs) (#33607) #195222, which got merged and is scheduled for the October 2023 release. It changes the workbench.editor.showTabs
setting from a boolean to an enum, which you can set to "none"
, which purportedly causes tabs and breadcrumbs to both be hidden. Setting it to "single"
will cause only the breadcrumbs to be shown.
If you can't wait, then the new feature is available in the latest VS Code Insiders.
For Zen Mode, use the zenMode.showTabs
setting.
Pre-VS-Code-1.84 answer
This feature doesn't exist at the time of this writing. You can get part of what you're looking for with the following settings in a settings.json file:
"workbench.editor.showTabs": false,
"breadcrumbs.enabled": false,
The full feature is covered by this feature-request issue ticket: Allow to hide editor title section entirely (tabs, breadcrumbs) #33607. Give it a thumbs up to show support for it, subscribe to it to get notified about discussion and updates. Please avoid making noisy comments like "+1" / "bump".
In that issue ticket, people suggest other workarounds such as:
For Zen Mode, use the zenMode.hideTabs
setting.
View: Toggle Zen Mode
in the command palette. Does this work for you? – Beelzebub