How to customize the SBCL REPL?

2020-07-05 06:21发布

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.

4条回答
干净又极端
2楼-- · 2020-07-05 06:59

There's vim+slime (slimv) too, for vim users.

查看更多
做自己的国王
3楼-- · 2020-07-05 07:04

You could use rlwrap

If you have MacPorts installed you can get it with

sudo port install rlwrap

The invoke sbcl with

rlwrap sbcl
查看更多
趁早两清
4楼-- · 2020-07-05 07:04

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.

查看更多
三岁会撩人
5楼-- · 2020-07-05 07:18

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.

查看更多
登录 后发表回答