Sublime Forum

Hide Menu bar

#1

Hi,

A nice to have only, but could we get an option to hide the menu bar in X? I very rarely need it, and when I do, just hit alt (as seen in firefox, Vista Explorer, etc). Plus it somewhat ruins the aesthetics of the Sublime UI.

thanks.

0 Likes

#2

This is something that’s on the todo list to add in Sublime text X

0 Likes

#3

Since we’re now in the alpha phase of Sublime Text 2, I would also like to request this feature. Ideally, the Alt key should show the menu bar, just as in Windows Explorer in Windows 7.

0 Likes

#4

I had this bound to alt+backslash in v1 with the following:

<binding key="alt+backslash" command="toggleApp showMenuFullscreen"> <context name="isFullScreen" value="true"/> </binding>
Is there an equivalent in X?

I’ve tried converting it to JSON:

[code]{ “keys”: “alt+backslash”], “command”: “show_menu_full_screen”, “context”:

		{ "key": "is_full_screen", "operator": "equal", "operand": true }
	]

}[/code]… but to no avail.

~r

0 Likes