Is there a way to bind C-l in SLIME to clear the screen?
Thank you!
What you probably want is slime-repl-clear-buffer
, which is by default bound to C-c M-o
. You can bind the function on the Slime REPL buffer in the normal way, for example
(local-set-key [(control l)] 'slime-repl-clear-buffer)