Is there a way to customize the SBCL REPL in a way that makes it work similar to the CLISP REPL. The standard SBCL REPL isn't really usable on Mac OS X. I can't use the arrow keys or backspace.
相关问题
- Drakma and Dexador both fails at USocket call whil
- Forming Lisp code to task — related to flatten lis
- How to not have Gradle quit Scala's REPL immed
- clisp 2.49: asdf cannot find asd
- Lisp web tales: How to fix the blogdemo example (C
相关文章
- Does learning one Lisp help in learning the other?
- Common Lisp: Why does my tail-recursive function c
- How do I write a macro-defining macro in common li
- How can I unintern a qualified method?
- Changing the nth element of a list
- Is a “transparent” macrolet possible?
- comma-comma-at in Common Lisp
- Updating to ASDF 3.x in CLISP
There's vim+slime (slimv) too, for vim users.
You could use
rlwrap
If you have MacPorts installed you can get it with
The invoke
sbcl
withMost of the people use SBCL REPL with
SLIME
. It gives it by far much more features, thenreadline
, that is used in CLISP. If you aren't comfortable with using Emacs, you can tryABLE
(available through quicklisp) - a very simple editor, that supports some basic REPL features on par withreadline
, but as well has basic code highlighting and built-in Hyperspec.You can try linedit which is available via Quicklisp. That said, Emacs+SLIME is a real beast. In fact, Firebug is the only thing close to it that I'm aware of.