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.
|
1
|
|
||
|
|
|
|
It's easy to start an interactive Lisp session with:
You can read more about this feature in the Emacs manual section on "Lisp Interaction" |
|||
|
|
|
In the |
||
|
|
|
|
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:
|
||||
|
|
|
Your best bet is the
Then use If you want things like
|
|||
|
|
|
|
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 |
||
|
|
