help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: lisp evaluation command


From: Xah Lee
Subject: Re: lisp evaluation command
Date: Wed, 14 Jan 2009 11:30:27 -0800 (PST)
User-agent: G2/1.0

On Jan 14, 4:50 am, moueza <mouezape...@gmail.com> wrote:
> hi,
> C-j unavailable for me, what is the minibuffer equivalent command for C-j ?

in emacs, there are systematic ways to find out which shortcut is
associated with which command, and which command has what shortcuts.

This is describe-key and describe-function.

For detail, see:

• Tips on Long Term Emacs Productivity
  http://xahlee.org/emacs/effective_emacs.html

In lisp modes, there are several commands to eval lisp code. Each has
a shortcut, and you may also define alias so you can type less.

(defalias 'eb 'eval-buffer)
(defalias 'er 'eval-region)
(defalias 'ee 'eval-expression)
(defalias 'elm 'emacs-lisp-mode)
(defalias 'eis 'elisp-index-search)

The C-j you mentioned is not a shortcut for any of them in any lisp
mode i know of.

• Tips For Editing Lisp Code With Emacs
  http://xahlee.org/emacs/emacs_editing_lisp.html

  Xah
∑ http://xahlee.org/

reply via email to

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