can I use common lisp and Clojure from within emacs at the same time?
I would like to have each lisp-REPL in its own buffer, and If i did this how could I controll which buffer sent its data to which lisp?
can I use common lisp and Clojure from within emacs at the same time?
Share
Yes. In the documentation to Slime you will find
slime-lisp-implementations. Here is how I have it defined in my .emacs:You start up your lisps using M– M-x Slime. It will ask you which Lisp to start up, and you use the name you defined in
slime-lisp-implementations. In this example, I would usecmucl,sbcl,clozureorclojure.You can switch the “active” REPL using the command C-c C-x c. For more info, see the Slime Documentation on controlling multiple connections.