views:

242

answers:

2

I stalled leiningen and run lein swank.

  1. sudo lein deps
  2. lein swank

Aquamacs has everything about SLIME, so it's OK.

Solution to this problem

David helped me to be out of trouble. As Aquamacs has built-in slime, I didn't need anything complex about the setup. I just needed one line - (slime-setup '(slime-repl)).

A: 

I found that I needed this in my .emacs to get it to work:

(eval-after-load "slime"
  '(progn
     (slime-setup '(slime-fancy slime-asdf))))
Greg Harman
It doesn't seem to work.
prosseek
+1  A: 

I had the same problem if I used (slime-setup '(slime-fancy)). Changing it to (slime-setup '(slime-repl)) fixed it.

David Dreisigmeyer