Programming

Inferior Emacs Lisp Mode (ielm)

steloflute 2012. 9. 5. 23:30

http://emacswiki.org/emacs/InferiorEmacsLispMode

 

IELM: Inferior Emacs Lisp Mode

A nice little mode that acts like an interactive Lisp interpreter. It doesn’t do all the fancy shell stuff such as redirection – use the EmacsShell if you need that. IELM is an alternative to Lisp Interactive mode, which is the mode of buffer ‘*scratch*’.

Start it using ‘M-x ielm’.

It’s real little read-eval-print loop (REPL).

Icicles Enhancements to IELM

You can use Icicles completion in IELM. Whenever there are multiple completion candidates, Icicles completion is used (if Icicle minor mode is on). This means you can cycle to choose a candidate, complete using one or more substrings or regexps (progressive completion), and so on. See Icicles - Completion in Comint Modes.

Emacs as an `inferior-lisp-program`

You can use emacs itself as an inferior-lisp-program which means you’re still sending lisp forms to an external process.

 

'Programming' 카테고리의 다른 글

Best In Class: Python vs Clojure - Evolving  (0) 2012.09.06
Performance in DrRacket  (0) 2012.09.05
(Go) Structs and Interfaces  (0) 2012.09.04
Schematics Scheme Cookbook  (0) 2012.09.04
HTML Color Names  (0) 2012.08.31