Reputation: 1837
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
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:
Upvotes: 0
Reputation:
Easily. to hide, left-click on status bar. to show, (v1.4 .. 1.58) go on view. then appearance.
Upvotes: 0
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
Reputation: 3378
View > Appearance > Show Status Bar
Screenshot from version 1.42.0
At version 1.4, go to View-> Toggle status bar
Upvotes: 75
Reputation: 1106
press : ctrl+shift+P -> Open settings (JSON) -> "workbench.statusBar.visible": true,
Upvotes: 1
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
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
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.
Upvotes: 4
Reputation: 31
Guy above nearly had it -
Tools(at the Menu Bar)->Options(at the bottom)->General->Environment > Status Bar
100% works
Upvotes: 2
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
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