Re: Can't use Clojure 1.5 with emacs and swank

2013-02-12 Thread JvJ
Thanks for that. It works. In fact, I thought I had already tried this, but I wrote :plugin instead of :plugins in the project file. On Tuesday, 12 February 2013 00:04:52 UTC-5, Daniel Glauser wrote: The momentum is definitely headed the nrepl direction but if you do want to get Clojure

Can't use Clojure 1.5 with emacs and swank

2013-02-11 Thread JvJ
I added 1.5.0-beta13 to my lein project file, and now I get something like this when I try M-x clojure-jack-in signal(error (Could not start swank server: ...etc... Does anyone know what I should do about this? Thanks. -- -- You received this message because you are subscribed to the

Re: Can't use Clojure 1.5 with emacs and swank

2013-02-11 Thread David Nolen
I'm not sure if swank-clojure has been patched for 1.5, I believe the line column information changes might have broken things. nrepl.el works pretty well as a replacement and development seems to be moving along pretty quickly. David On Mon, Feb 11, 2013 at 5:53 PM, JvJ kfjwhee...@gmail.com

Re: Can't use Clojure 1.5 with emacs and swank

2013-02-11 Thread Devin Walters
That's definitely the issue. Switch to nrepl or see if there's an updated swank-clojure. I switched and it took some getting used to and hackery to get it working like my swank setup did, but I think it was worth it. '(Devin Walters) On Feb 11, 2013, at 5:01 PM, David Nolen

Re: Can't use Clojure 1.5 with emacs and swank

2013-02-11 Thread Baishampayan Ghose
Devin, would you be kind enough to share the hackery you did to get nREPL to work like a normal slime/swank setup? I personally found many of the keybinding choices in nrepl.el to be quite different from slime/swank. ~BG On Tue, Feb 12, 2013 at 5:05 AM, Devin Walters dev...@gmail.com wrote:

Re: Can't use Clojure 1.5 with emacs and swank

2013-02-11 Thread Daniel Glauser
The momentum is definitely headed the nrepl direction but if you do want to get Clojure 1.5 working with slime/swank you can just bump the lein-swank plugin to the latest version, 1.4.5. I tried this tonight and played with some reducer code, everything seems to be working. Cheers, Daniel On