问题
I have a simple question,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 can't find an option to hide it.
回答1:
At version 1.4, go to View-> Toggle status bar
回答2:
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.
回答3:
View > Appearance > Show/Hide Status Bar
回答4:
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
回答5:
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.
回答6:
Guy above nearly had it -
Tools(at the Menu Bar)->Options(at the bottom)->General->Environment > Status Bar
100% works
回答7:
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"
}
回答8:
In VSCode 1.36 Go to Menu View -> Appearances -> Show Status Bar
This will enable back on check and hide on uncheck.
回答9:
press : ctrl+shift+P -> Open settings (JSON) -> "workbench.statusBar.visible": true,
回答10:
Go to Options->Environment->General->Uncheck show status bar->Ok
来源:https://stackoverflow.com/questions/37117555/how-can-i-hide-the-status-bar-in-vs-code