Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to hide the menu bar in Sublime Text 2?

Tags:

sublimetext2

I suspect the answer is no, but I've got to ask anyway, is there any way to hide the menu bar in Sublime Text 2 running in Linux?

like image 788
teryret Avatar asked Jun 08 '13 18:06

teryret


People also ask

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 menu bar in Sublime Text?

You can simply press "alt+v" ,you will see menu bar then click "show menubar".

How do I show the hidden menu bar in Sublime Text 4?

Pressing the “alt” key should show the menu for you.

How do I hide in Sublime Text?

To hide the Minimap in Sublime text 3, click on “View” in the top bar, then click “Hide Minimap”, which will be the second option in the drop-down list. The Minimap will instantly be hidden and the area of the screen it previously used will be freed-up for text to take its place.


1 Answers

Ah, finally found people talking about it: http://www.sublimetext.com/forum/viewtopic.php?f=2&t=12441&p=48966&hilit=hide+menu+bar#p48966

The long and short of it is no, this seems to be the one thing that can't be customized in Sublime 2. >:-|

Edit: Wow, talk about me being glad to be wrong!

http://www.sublimetext.com/forum/viewtopic.php?f=3&t=2726&p=39487&hilit=hide+menu+bar#p39487 outlines a glorious terrible hack that gets the job done beautifully! To reproduce the steps here for redundancy:

The idea is to trick GTK into rendering the window as if you're using it in Unity (or the like) so it doesn't draw the menu bar despite Sublime telling it to. It doesn't allow you to turn the menus back on without restarting, but for my purposes that's fine (it's all just a ctrl+shift+p away anyway) and it looks sooo much better without that bar. Anyway here's how to do it in ubuntu and mint:

sudo apt-get install git-core valac-0.14 libvala-0.14-dev libgtk-3-dev gobject-introspection libgirepository1.0-dev libgtk2.0-dev autotools-dev automake autoconf intltool libtool
git clone git://github.com/gnome-globalmenu/gnome-globalmenu.git
cd gnome-globalmenu
git checkout gnome-3
autoreconf --force --install --verbose
./autogen.sh --prefix=/usr
make
sudo make GTK2_MODULES_DIR=/usr/lib/gtk-2.0/modules GTK3_MODULES_DIR=/usr/lib/gtk-3.0/modules GLIB_COMPILE_SCHEMAS=/bin/true install
sudo glib-compile-schemas /usr/share/glib-2.0/schemas

then invoke it with

GTK_MODULES=globalmenu-gtk /path/to/sublime_text

or better yet wrap a script around it.

like image 157
teryret Avatar answered Oct 08 '22 10:10

teryret