Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Showing menu bar in sublime-text 3

People also ask

How do I reveal the menu bar?

Press the 'Alt' key to show the Menu Bar. 3. Click on 'View', move your mouse to 'Toolbars', and then click on 'Menu Bar'. Once there is a checkmark next to 'Menu Bar', the Menu Bar will now be displayed each time you open Internet Explorer.

How do I hide the menu bar in sublime?

A simple plugin that will hide the menu for new windows in the Sublime Text 3 editor By default, the menu is shown on every new window until the user decides to hide it through “View > Hide Menu”. The user is still able to show/hide the menu on a per-window basis.

How do I unhide the status bar in Sublime Text?

Press Ctrl+Shift+P for the command pallette, then type 'togstat'. The command pallette is the sublime way, and will work in Linux, Mac and Windows - whereas the 'alt' trick only works in windows.


  • Invoke the command palette with CTRL + SHIFT + P
  • Type menu
  • Select View: Toggle Menu

If the above solution doesn't work for someone, try:

dconf reset -f /org/compiz/
setsid unity

This should work ! I was having this problem with other apps too... So I just reset the whole thing.


Press Ctrl + Shift + p

Search for menu

Click on view: Toggle Menu

It will work


Apparently there is an undocumented toggle_menu command, so you can bind a key to it. But Alt alone does not seem to work - I guess because it's a modifier key for SLT.

.../User/Default (Linux).sublime-keymap:

[
    { "keys": ["f10"], "command": "toggle_menu"}
]