Re: [ANN] CIDER 0.9

2015-06-18 Thread Bozhidar Batsov
You should definitely collect all this information in a bug report and we'll track this issue down. On 18 June 2015 at 17:32, Leon Grapenthin wrote: > Oh and you can also C-g and kill the unusubal REPL buffer if this happens. > > > On Thursday, June 18, 2015 at 4:31:25 PM UTC+2, Leon Grapenthin

Re: [ANN] CIDER 0.9

2015-06-18 Thread Ed Maphis
On that note, the nrepl 0.2.6 problem is a pretty old issue by now. Does anyone know if there are any plans to update leiningen. On Wednesday, June 17, 2015 at 3:04:29 AM UTC-4, Isaac Zeng wrote: > leiningen use org.clojure/tools.nrepl 0.2.6 cider-nrepl throw warning > > On Tuesday, June 16, 20

Re: [ANN] CIDER 0.9

2015-06-18 Thread Leon Grapenthin
Oh and you can also C-g and kill the unusubal REPL buffer if this happens. On Thursday, June 18, 2015 at 4:31:25 PM UTC+2, Leon Grapenthin wrote: > > Yeah, it usually happens when you start the second REPL while having the > REPL buffer open. It doesn't happen if you open the second REPL e. g. on

Re: [ANN] CIDER 0.9

2015-06-18 Thread Leon Grapenthin
Yeah, it usually happens when you start the second REPL while having the REPL buffer open. It doesn't happen if you open the second REPL e. g. on the project.clj... On Thursday, June 18, 2015 at 2:56:12 PM UTC+2, Baishampayan Ghose wrote: > > By the way, I just tried connecting to two different

Re: [ANN] CIDER 0.9

2015-06-18 Thread Bozhidar Batsov
Submit a ticket + some repro steps and we'll have a look at it. On 18 June 2015 at 15:55, Baishampayan Ghose wrote: > By the way, I just tried connecting to two different repls from the > same project (the regular one + one started by fighweel) and it made > my Emacs hang :-\ > > Connecting to m

Re: [ANN] CIDER 0.9

2015-06-18 Thread Baishampayan Ghose
By the way, I just tried connecting to two different repls from the same project (the regular one + one started by fighweel) and it made my Emacs hang :-\ Connecting to multiple repls on different projects works fine. Thanks, BG On Thu, Jun 18, 2015 at 5:26 PM, Bozhidar Batsov wrote: > Happy to

Re: [ANN] CIDER 0.9

2015-06-18 Thread Bozhidar Batsov
Happy to hear this! :-) On 18 June 2015 at 14:36, Stefan Kamphausen wrote: > Dear CIDER Devs, > > > On Tuesday, June 16, 2015 at 4:33:48 PM UTC+2, Bozhidar Batsov wrote: >> >> >> CIDER 0.9 is finally out! You can read more about the release here >> http://batsov.com/articles/2015/06/16/cider-0-d

Re: [ANN] CIDER 0.9

2015-06-18 Thread Stefan Kamphausen
Dear CIDER Devs, On Tuesday, June 16, 2015 at 4:33:48 PM UTC+2, Bozhidar Batsov wrote: > > > CIDER 0.9 is finally out! You can read more about the release here > http://batsov.com/articles/2015/06/16/cider-0-dot-9/ > > thanks for the time and effort you've put into this! Works fine for me. Up

Re: [ANN] CIDER 0.9

2015-06-17 Thread Alexis
Bozhidar Batsov writes: Yeah, I'm aware of those problems, but as you already know they have to fixed in leiningen. At least these days leiningen has an alternative ( https://github.com/boot-clj/boot). Good point - this is an opportunity for me to try out boot. :-) Alexis. -- You receive

Re: [ANN] CIDER 0.9

2015-06-17 Thread Bozhidar Batsov
Yeah, I'm aware of those problems, but as you already know they have to fixed in leiningen. At least these days leiningen has an alternative ( https://github.com/boot-clj/boot). On 18 June 2015 at 07:51, Alexis wrote: > > Bozhidar Batsov writes: > > nREPL 0.2.6 is pretty old and has some serio

Re: [ANN] CIDER 0.9

2015-06-17 Thread Alexis
Bozhidar Batsov writes: nREPL 0.2.6 is pretty old and has some serious bugs in it (alas there hasn't been a lein release for a while). You'll have to pull in a newer nREPL manually to get rid of this. {:user {:dependencies [[org.clojure/tools.nrepl "0.2.10”]]}} Unfortunately this doesn't

Re: [ANN] CIDER 0.9

2015-06-17 Thread Bozhidar Batsov
nREPL 0.2.6 is pretty old and has some serious bugs in it (alas there hasn't been a lein release for a while). You'll have to pull in a newer nREPL manually to get rid of this. {:user {:dependencies [[org.clojure/tools.nrepl "0.2.10”]]}} On 17 June 2015 at 10:04, Isaac Zeng wrote: > leiningen u

Re: [ANN] CIDER 0.9

2015-06-17 Thread Bozhidar Batsov
Ouch. That's an oversight on my part. Seems we've used a few functions straight from `cl` instead of the newer `cl-lib`. Thought I had all those usages fixed, but I guess I haven't. On 17 June 2015 at 16:06, Leon Grapenthin wrote: > Nevermind, I found the solution. (require 'cl) manually before

Re: [ANN] CIDER 0.9

2015-06-17 Thread Bozhidar Batsov
Go do something useful with your IDE (or whatever) for a change and stop trolling on this thread... On 17 June 2015 at 16:56, Fluid Dynamics wrote: > On Wednesday, June 17, 2015 at 9:06:58 AM UTC-4, Leon Grapenthin wrote: >> >> Nevermind, I found the solution. (require 'cl) manually before compi

Re: [ANN] CIDER 0.9

2015-06-17 Thread maverickavi
On 17 June 2015 at 20:56, Fluid Dynamics wrote: > On Wednesday, June 17, 2015 at 9:06:58 AM UTC-4, Leon Grapenthin wrote: >> >> Nevermind, I found the solution. (require 'cl) manually before compiling >> cider. >> >> >> On Wednesday, June 17, 2015 at 3:01:47 PM UTC+2, Leon Grapenthin wrote: >>> >

Re: [ANN] CIDER 0.9

2015-06-17 Thread Fluid Dynamics
On Wednesday, June 17, 2015 at 9:06:58 AM UTC-4, Leon Grapenthin wrote: > > Nevermind, I found the solution. (require 'cl) manually before compiling > cider. > > > On Wednesday, June 17, 2015 at 3:01:47 PM UTC+2, Leon Grapenthin wrote: >> >> I think I managed to get almost everything to work. >> >

Re: [ANN] CIDER 0.9

2015-06-17 Thread Leon Grapenthin
Nevermind, I found the solution. (require 'cl) manually before compiling cider. On Wednesday, June 17, 2015 at 3:01:47 PM UTC+2, Leon Grapenthin wrote: > > I think I managed to get almost everything to work. > > The only thing that doesn't work is the nrepl history. When I hit M-p or > M-n, I g

Re: [ANN] CIDER 0.9

2015-06-17 Thread Leon Grapenthin
I think I managed to get almost everything to work. The only thing that doesn't work is the nrepl history. When I hit M-p or M-n, I get Symbol's function definition is void: assert When I run (require 'cl) it changes to Invalid function: assert Am I the only one with this problem? Because I fo

Re: [ANN] CIDER 0.9

2015-06-17 Thread Fluid Dynamics
> I upgraded to version 0.9 I get the following error when starting cider in > emacs: > > Starting nREPL server via lein repl :headless... > nREPL server started on 55266 > nREPL: Establishing direct connection to localhost:55266 ... > nREPL: Direct connection established > error in process filt

Re: [ANN] CIDER 0.9

2015-06-17 Thread Isaac Zeng
leiningen use org.clojure/tools.nrepl 0.2.6 cider-nrepl throw warning On Tuesday, June 16, 2015 at 10:33:48 PM UTC+8, Bozhidar Batsov wrote: > > Hey everyone, > > CIDER 0.9 is finally out! You can read more about the release here > http://batsov.com/articles/2015/06/16/cider-0-dot-9/ > > Enjoy (r

Re: [ANN] CIDER 0.9

2015-06-16 Thread Bozhidar Batsov
Yeah, that's an unfortunate problem with package.el. See https://github.com/clojure-emacs/cider/issues/1050#issuecomment-112595451 On 17 June 2015 at 05:38, Avi Avicenna wrote: > Wow!! Many thanks to all CIDER contributors. > > I didn't get it to work at first, but deleting all previous *.elc fi

Re: [ANN] CIDER 0.9

2015-06-16 Thread Avi Avicenna
Wow!! Many thanks to all CIDER contributors. I didn't get it to work at first, but deleting all previous *.elc files and restarting emacs solves the problem. Congratulations! Yours, Avicenna On Tuesday, 16 June 2015 21:33:48 UTC+7, Bozhidar Batsov wrote: > > Hey everyone, > > CIDER 0.9 is fina

Re: [ANN] CIDER 0.9

2015-06-16 Thread Shahrdad Shadab
Don't bother please, after I upgraded the clojure-mode issue got fixed. Again thanks for your magnificent tool. Best regards Shahrdad On Tue, Jun 16, 2015 at 12:19 PM, Shahrdad Shadab wrote: > Hi Bozhidar > > Thanks for the awesome work however when I upgraded to version 0.9 I get > the followi

Re: [ANN] CIDER 0.9

2015-06-16 Thread Shahrdad Shadab
Hi Bozhidar Thanks for the awesome work however when I upgraded to version 0.9 I get the following error when starting cider in emacs: Starting nREPL server via lein repl :headless... nREPL server started on 55266 nREPL: Establishing direct connection to localhost:55266 ... nREPL: Direct connecti

[ANN] CIDER 0.9

2015-06-16 Thread Bozhidar Batsov
Hey everyone, CIDER 0.9 is finally out! You can read more about the release here http://batsov.com/articles/2015/06/16/cider-0-dot-9/ Enjoy (responsibly)! :-) -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to cloju