I recently started learning lisp and had mostly bin using clisp and vim. I also wanted to try sbcl, as it is often recommended as one of the best, free lisp compilers. However, there is one thing that makes sbcl more difficult for me: I cannot get autocomplete in the REPL that I have in clisp. That is, when I run sbcl and type in the following (as an example),
* (requi<tab>
where <tab>is a literal tab character, I do not get a list of completions, but rather a detailed tab character. In clisp, <tab>complete the previous line before * (require.
Since I'm pretty new to lisp, the autocomplete function in clisp is really convenient, so it would be very convenient if someone could explain how to get it in sbcl.
source
share