How to hide the status bar in the code?

I have a simple question: how to hide the status bar in Visual Studio code?

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

+10
editor visual-studio-code
source share
10 answers

In version 1.4 go to the View Panel-> Toggle Status

+22
source share

I think you should try ... Go to Tools (on the menu bar) → Options (bottom) → General-> Show Status Bar (uncheck), and then click OK.

+5
source share

Now the team did not open permission to configure the status bar (I mean show / hide or change it to a different color).

But this was a function request. Others can trace this problem there:

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

+3
source share

View > Appearance > Show/Hide Status Bar

+3
source share

Guy nearly got it -

Tools (on the menu bar) → Options (bottom) → General-> Environment> Status Bar

100% works

+2
source share

Find the key binding settings by typing ctrl + P. This will take you to the control panel, and vscode will even make it easier to change keys by just pressing keys. find the status bar and just set it to something else like me here. I switch when I want to see him.

enter image description here

+1
source share

Open 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" } 
+1
source share

In VSCode 1.36 go to Menu View → Appearance → Show Status Bar

This will enable the check again and hide it when you uncheck the box.

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

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

-3
source share

All Articles