Difference between revisions of "IELM"

From WikEmacs
Jump to navigation Jump to search
(Hooray, new tooltip template for acronyms works.)
Line 1: Line 1:
 +
{{package
 +
| name=IELM
 +
| description=Emacs Lisp REPL
 +
| author=David Smith
 +
| source=
 +
| in_emacs=yes
 +
}}
 +
 
'''IELM (Interactive Emacs Lisp Mode)''' is a nice mode that gives you an interactive [[Emacs Lisp]] shell (or a {{Acronym|REPL|Read-Eval-Print Loop}} if you prefer) that you can use for exploratory programming.  You can start it by pressing {{Command|ielm}}. You'll be taken to a buffer named {{Buffer|*ielm*}}, where Emacs Lisp expressions you've entered will be evaluated on pressing the Return key. IELM offers some nice features like tab autocompletion of symbol names and the ability to span an expression over several lines.  
 
'''IELM (Interactive Emacs Lisp Mode)''' is a nice mode that gives you an interactive [[Emacs Lisp]] shell (or a {{Acronym|REPL|Read-Eval-Print Loop}} if you prefer) that you can use for exploratory programming.  You can start it by pressing {{Command|ielm}}. You'll be taken to a buffer named {{Buffer|*ielm*}}, where Emacs Lisp expressions you've entered will be evaluated on pressing the Return key. IELM offers some nice features like tab autocompletion of symbol names and the ability to span an expression over several lines.  
  

Revision as of 04:50, 5 April 2012

IELM
Description Emacs Lisp REPL
Author David Smith
Maintainer name of maintainer
Part of Emacs yes

IELM (Interactive Emacs Lisp Mode) is a nice mode that gives you an interactive Emacs Lisp shell (or a REPL if you prefer) that you can use for exploratory programming. You can start it by pressing M-x ielm. You'll be taken to a buffer named "*ielm*", where Emacs Lisp expressions you've entered will be evaluated on pressing the Return key. IELM offers some nice features like tab autocompletion of symbol names and the ability to span an expression over several lines.



Basic setup

IELM is bundled with Emacs by default. No additional setup is required.

Helpful keybindings

[Tab]
Complete symbol at point.
[Return]
Evaluate expression


Common Customization

Show eldoc in IELM

(defun my-ielm-mode-defaults ()
  (turn-on-eldoc-mode))

(setq my-ielm-mode-hook 'my-ielm-mode-defaults)

(add-hook 'ielm-mode-hook (lambda () (run-hooks 'my-ielm-mode-hook)))

Recommended Reading


Tutorial Pages

IELM: A REPL for Emacs