info-gnus-english
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Slime and Emacs Lisp


From: Johan Bockgård
Subject: Re: Slime and Emacs Lisp
Date: Fri, 07 Apr 2006 19:48:29 +0200
User-agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux)

Sébastien Vauban <ewgeocaufsfb@spammotel.com> 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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]