Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what exactly does clojure-jack-in do? And how to config the settings with slime?

what exactly does clojure-jack-in do? And how to config the settings with slime ? What do I need to add to .emacs?

like image 744
flyingfoxlee Avatar asked Aug 30 '11 04:08

flyingfoxlee


1 Answers

clojure-jack-in starts a SLIME session for your current project.

It does this by generating a random port number, running lein jack-in with this port number in a sub-process, waiting for the swank server to start and then calling slime-connect with the port number.

Since lein jack-in is used to start the swank server, you obviously need to use Leiningen in your project and you need to have the swank-clojure plugin for Leiningen installed, either by installing it as a stand-alone plugin (lein plugin install swank-clojure 1.3.2), or by including it as a dev-dependency in your project.clj.

On the Emacs side, you need to install clojure-mode, preferably from Marmalade. You shouldn't need to add anything to your .emacs.

The difference between using lein jack-in (via M-x clojure-jack-in) vs. running lein swank is that clojure-jack-in also loads a version of SLIME that is bundled with the swank-clojure Leiningen plugin instead of the SLIME version installed in Emacs. I'm not sure what's the reasoning behind this, presumably just to make sure the SLIME version is compatible with the swank server.

like image 140
Christian Berg Avatar answered Nov 13 '22 15:11

Christian Berg