Reputation: 2084
After search into VSCode workbench api/references, I didnt find some way to hide the file name/path status bar of the editor.
Did anyone succeed?
Upvotes: 2
Views: 1149
Reputation: 487
As of feature request #33607 getting merged (around October 2023), the workbench.editor.showTabs
setting can now be set to the options
multiple
- default behavior showing all tabssingle
- the unwanted behavior showcased in your question, where information about the currently opened file is shownnone
- the behavior you were requesting, where the bar above the editor is hidden entirelyUpvotes: 0
Reputation: 36
Open settings.json file and add the following:
"workbench.editor.showTabs": true,
You can open the settings.json file by clicking on Preferences -> Settings -> Edit in settings.json file. or by Command + shift + p and search for "Open Settings (JSON)".
Upvotes: 2
Reputation: 180695
Look at this setting:
Workbench › Editor: Label Format
Controls the format of the label for an editor.
But default
is the default and it only shows the filename - perhaps your setting got changed.
Upvotes: 1