Reputation: 1201
Is it possible to hide "Spaces" element in VSCode status bar?
Upvotes: 4
Views: 1182
Reputation: 1201
Starting from VSCode 1.36 (June 2019), it is possible to hide any status bar elements (including those provided by extensions) by right-clicking on the status bar and selecting the desired element:
The configuration persists across all workspaces.
Upvotes: 4
Reputation: 50008
The only status bar item that can be removed through built-in settings is the feedback icon via the workbench.statusBar.feedback.visible
setting.
There are open GitHub issues pending, requesting more customization in the status bar. Here's one related to the location of the items. And here's another related to the removal of items.
Note that the last issue offers a solution in the comments, which recommends that you install the Custom CSS and JS Loader extension, allowing you to target and hide the items via CSS classes.
Upvotes: 2