Sublime Forum

Anyway to keep menu hidden when pressing "Alt+" on Win

#1

I start to use Sublime Text 3 now, and I assigned a lot of shortcut with “Alt+” (For consistency with Mac and Win).
I hide menu and use full screen mode(F11), because I really like pure black coding environment. But one thing’s really bothering me that the menu bar keep showing up once I pressed “Alt” button on Windows.
Asking help, anyway to avoid that?

Big thanks!

Jimmy

0 Likes

#2

I resolved the issue by following this session http://stackoverflow.com/questions/15153367/stop-alt-key-bringing-up-the-menu-in-sublime-text-2

0 Likes

#3

For reference:

the solution mentioned at that above link was to utilize third-party “AutoHotkey” with a script like this

#IfWinActive Sublime Text LAlt::return (code fragment only)

which just “swallows” the key pressing event and does nothing further.

0 Likes