Is there and equivalent of func-menu for GNU emacs? I used func-menu when I had access to xemacs and I prefer its behaviour to that of the speedbar or sr-speedbar. Specifically:

  • I like that only the functions for the current file are displayed.

  • The function list can be popped up from the current frame and isn't a separate window which I may have covered up.

  • The current function name shows up in mode line.

Is there a package for GNU emacs which is a closer approximation to func-menu?

link|improve this question
feedback

1 Answer

Is this the XEmacs func-menu mode you're talking about? It gives you a list of functions in the current file.

If so, then you can mostly replicate the functionality in GNU Emacs with the Collection of Emacs Development Tools, CEDET (specifically the Semantic code parser), and the Emacs Code Browser, ECB.

  • The ECB Methods window shows you all the symbols in the selected source code buffer. It is a separate window in the Emacs sense - that is, a editing area showing a single buffer, several of which can be within a single window-manager window. It is not a Emacs frame so it won't be covered up.
  • Semantic's stickyfunc-mode can show the current function in a line at the top of your source code buffer. It uses the GNU Emacs-specific header line feature. This is not quite the same as showing the function name in the mode line, but close enough.

Note that ECB requires CEDET and both tend to be tricky to install without XEmacs's package manager.

link|improve this answer
To put the function name in the mode line you can use which-function-mode. – Ivan Andrus Jan 20 at 22:33
Thanks, the which-function-mode is part of what I'm looking for – perogiex Jan 24 at 12:57
CEDET is quite tricky to install, this may take a while. – perogiex Jan 24 at 12:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.