Torsten Wagner <torsten.wag...@gmail.com> wrote: > My menus are hidden too. However, if I need them for some reasons > there is some key mouse combo. Can't remember exactly. Shift right > click or C- right click.. something along this. The menu will pop up > as a context menu close to the mouse cursor location. Be aware there > is a customization menu too. > > Just in case you look for a quick way to use the menu. >
Thanks for the useful hint. One possible gotcha: in my case, C-<mouse3> is undefined, even though the docs say it should be. I tried emacs -q and emacs -Q as well, just in case, my init somehow clobbers it: undefined there as well. So I have to bind it somehow: (global-set-key [C-mouse-3] 'mouse-popup-menubar-stuff) does not seem to work for me, but (global-set-key [mouse-3] 'mouse-popup-menubar-stuff) does. GNU Emacs 24.0.92.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.4) of 2012-01-24 That's good enough I guess but I was wondering if anybody else has these problems. Nick