Igor
Igor

Reputation: 1201

Hiding "Spaces" element in VSCode status bar

Is it possible to hide "Spaces" element in VSCode status bar?

enter image description here

Upvotes: 4

Views: 1182

Answers (2)

Igor
Igor

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:

Hiding status bar element from context menu

The configuration persists across all workspaces.

Upvotes: 4

jabacchetta
jabacchetta

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

Related Questions