How can I hide the status bar in vs code?

試著忘記壹切 提交于 2020-01-30 04:10:33

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!