Just trying to get a very basic install of slime and clojure working, but swank keeps failing when I run clojure-jack-in
I first got lein, then put the following in my .emacs (for version 24.1):
(add-to-list 'load-path "~/.emacs.d/packages/")
(require 'package)
(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/"))
(package-initialize)
I then installed clojure-mode and paredit.
My ~/.lein/profiles.clj
{:user {:plugins [[lein-swank "1.4.4"]]
:injections [(use '[clojure.repl :only [doc]])]}}
When I open up a clj file and run clojure-jack-in, swank gives me
slime-repl-79b38c83.el:122:1:Error: (slime-connection-output-buffer) is not a valid place expression
:injections
if you're using swank - you can just useC-c C-d d
to get doc on any symbol – sw1nn