table of contents

connect to remote common lisp repl with sly/slime

2023-06-14

assuming sbcl is installed on the destination server and the one to be used

note that direct remote connections to swank/slynk arent possible (by default) so we have to use an ssh tunnel (see https://comp.lang.lisp.narkive.com/ze9FYwCl/how-to-connect-with-slime-to-remote-sbcl) a one-liner to start the slynk server:

sbcl --eval '(ql:quickload :slynk)' --eval '(slynk:create-server)'