Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I hide the menu bar in visual studio code? [duplicate]

How can I hide the menu bar in visual studio code? I do not find the command to do it. In some applications or browsers the alt key is used but I can not find the command or the option in the menu bar to hide it. Can you help me?

screenshot.

like image 294
Gerardo Bautista Avatar asked Oct 14 '17 02:10

Gerardo Bautista


People also ask

How do I hide the menu bar in VSCode?

You can hide the Menu Bar on Windows and Linux by changing the setting window. menuBarVisibility from classic to toggle . A setting of toggle means that a single press of the Alt key will show the Menu Bar again. You can also hide the Menu Bar on Windows and Linux with the View > Toggle Menu Bar command.

How do I hide the toolbar in Visual Studio?

Menu and title bar are in auto-hide mode and are accessible if you press "Alt" or "Ctrl-Q" hotkey or hover mouse over window top.

How do I get rid of VSCode right sidebar?

Ctrl + Shift + P write Toggle minimap and hit enter and it's gone. Save this answer. Show activity on this post.


2 Answers

You can hide the menu bar by clicking the Toggle Menu Bar option in the View menu.

Screenshot of option


To bring the menu bar back, as pointed out by pramesh-bajracharya in the comments:

Ctrl + Shift + P will open a command window and you can type Toggle Menu Bar to toggle it on and off.

like image 85
ifconfig Avatar answered Sep 29 '22 11:09

ifconfig


If you want to toggle the menu bar with Alt, see this setting:

// Control the visibility of the menu bar. A setting of 'toggle' means that the menu bar is hidden and a single press of the Alt key will show it. By default, the menu bar will be visible, unless the window is full screen.

 "window.menuBarVisibility": "toggle",

The default is "default", change it to "toggle" in your user settings..

like image 20
Mark Avatar answered Sep 29 '22 11:09

Mark