Right now I write expressions in the *scratch* buffer and test them by evaluating with C-x C-e. I would really appreciate having an interactive interpreter like SLIME or irb, in which I could test Emacs Lisp expressions.
|
|
||||
|
|
|
It's easy to evaluate Lisp expressions in Inferior Emacs-Lisp Mode:
You can read more about this feature in the Emacs manual section on "Lisp Interaction" |
|||||
|
|
Your best bet is the
Then use If you want things like
|
||||
|
|
|
Eshell is another option for an interactive Elisp interpreter.
Not only is it a command shell like bash (or cmd.exe if on Windows) but you can also interactively write and execute Elisp code.
|
|||
|
|
To run just one elisp expression you can use M-: shortcut and enter expression in mini-buffer. For other cases you can use scratch buffer |
|||
|
|
|
Well, if you're really interested in a literal REPL for emacs it is possible to write one using the -batch mode of emacs:
You can call this from the command line, or, as you seem to want, from within an emacs buffer running a shell:
|
|||||
|