chenxinlong
chenxinlong

Reputation: 1837

How can I hide the status bar in VS Code?

How can I hide the status bar in Visual Studio Code?

It should be possible to hide the status bar. Is there any way to hide it? In the "View" menu, I cannot find an option to hide it.

Upvotes: 39

Views: 68945

Answers (13)

GorvGoyl
GorvGoyl

Reputation: 49220

In case someone wants to hide certain items from the status bar instead of disabling it completely:

Right click on status bar and untick items:

enter image description here

Upvotes: 0

user16449695
user16449695

Reputation:

Easily. to hide, left-click on status bar. to show, (v1.4 .. 1.58) go on view. then appearance.

Upvotes: 0

mostafa elshafie
mostafa elshafie

Reputation: 1

As of today, 17 Feb 2020, with the latest version of VSC. Just press the settings icon at the bottom left of your screen. A new tab opens in the editor. Go to workbench then appearance and find the status bar and check the visibility box.

Upvotes: 0

foxiris
foxiris

Reputation: 3378

View > Appearance > Show Status Bar

Screenshot from version 1.42.0 enter image description here

At version 1.4, go to View-> Toggle status bar

Upvotes: 75

HandyPawan
HandyPawan

Reputation: 1106

press : ctrl+shift+P -> Open settings (JSON) -> "workbench.statusBar.visible": true,

Upvotes: 1

Dhruv
Dhruv

Reputation: 117

In VSCode 1.36 Go to Menu View -> Appearances -> Show Status Bar

This will enable back on check and hide on uncheck.

Upvotes: 0

artronics
artronics

Reputation: 1496

View > Appearance > Show/Hide Status Bar

Upvotes: 8

Paradiesstaub
Paradiesstaub

Reputation: 2660

Open the settings.json and add:

{
    // hide menu-bar, can be displayed pressing the Alt key
    "workbench.activityBar.visible": false,
    // Alt key no longer displays the menu-bar (useful when using i3 on Linux)
    "window.menuBarVisibility": "hidden"
}

Upvotes: 2

Ryan Santos
Ryan Santos

Reputation: 387

Find your key bindings preferences by entering ctrl + P. That will take you to your control panel and vscode even makes it easier to change the keys by only needing to press the keys. search for statusbar and just set it to something else like I did here. I toggle when I want to see it.

enter image description here

Upvotes: 4

Steve Simkins
Steve Simkins

Reputation: 31

Guy above nearly had it -

Tools(at the Menu Bar)->Options(at the bottom)->General->Environment > Status Bar

100% works

Upvotes: 2

Vishal Prajapati
Vishal Prajapati

Reputation: 598

I think you should have a try at this... Go to Tools(at the Menu Bar)->Options(at the bottom)->General->Show Status Bar(Uncheck it ) and then press OK.

Upvotes: 5

Scen
Scen

Reputation: 921

Right now the team have not open the permission for customising status bar (I mean show/hide, or change it to another colour).

But there has been a feature request about that. Others could trace this issue there:

https://github.com/Microsoft/vscode/issues/1884

Upvotes: 3

t.Net
t.Net

Reputation: 1

Go to Options->Environment->General->Uncheck show status bar->Ok

Upvotes: -5

Related Questions