Sébastien Vauban <[EMAIL PROTECTED]> writes:

> For example, how do you get the display of a function's arguments
> list in the minibuffer? Very very useful.

Eldoc mode.

    (add-hook 'emacs-lisp-mode-hook 'turn-on-eldoc-mode)
    (add-hook 'lisp-interaction-mode-hook 'turn-on-eldoc-mode)
    (add-hook 'ielm-mode-hook 'turn-on-eldoc-mode)

> How do you localize source code?  Ctags, Etags, ...?

Through `find-function' etc. There are also links to the source from
the *Help* buffers.

(find-function-setup-keys) will define a bunch of keys for you:

    C-x   F     find-function
    C-x 4 F     find-function-other-window
    C-x 5 F     find-function-other-frame
    C-x   K     find-function-on-key
    C-x   V     find-variable
    C-x 4 V     find-variable-other-window
    C-x 5 V     find-variable-other-frame

-- 
Johan Bockgård
_______________________________________________
info-gnus-english mailing list
info-gnus-english@gnu.org
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to