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.
Asked
Active
Viewed 4,012 times
4 Answers
29
You could use rlwrap
If you have MacPorts installed you can get it with
sudo port install rlwrap
The invoke sbcl
with
rlwrap sbcl

Doug Currie
- 40,708
- 1
- 95
- 119
-
This gives you history, but not tab completion like CLISP. – Doug Richardson Aug 19 '14 at 23:38
7
Most of the people use SBCL REPL with SLIME
. It gives it by far much more features, then readline
, that is used in CLISP. If you aren't comfortable with using Emacs, you can try ABLE
(available through quicklisp) - a very simple editor, that supports some basic REPL features on par with readline
, but as well has basic code highlighting and built-in Hyperspec.

Vsevolod Dyomkin
- 9,343
- 2
- 31
- 36