Re: New release of the enclojure plugin is up.

2009-04-09 Thread MarkH
Enclojure is shaping up to be a really nice development environment for Clojure. Great work Eric. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googleg

Re: New release of the enclojure plugin is up.

2009-04-09 Thread Laurent PETIT
Hi, FYI, it seems that the old web site of enclojure is still up and running, and not referencing the new wikispaces web site. HTH, -- Laurent 2009/4/7 Eric Thorsen > > There is a new release of the Enclojure plugin that addresses many of > the items I have seen discuss here recently with reg

Re: New release of the enclojure plugin is up.

2009-04-08 Thread CuppoJava
Thanks for that very informative comparison. I'll give it a try immediately. -Patrick --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com To

Re: New release of the enclojure plugin is up.

2009-04-08 Thread Luke VanderHart
Excellent... this is the first release of a Clojure IDE that hasn't immediately proven itself unusable as I put it through its paces. I expect this will become my main platform for Clojure development. Thanks! -Luke On Apr 6, 8:43 pm, Eric Thorsen wrote: > There is a new release of the Encloj

Re: New release of the enclojure plugin is up.

2009-04-08 Thread Daniel Jomphe
CuppoJava wrote: > I'm just wondering if anyone who's tried this and the IntelliJ plugin > can comment on how they compare. > > I'm wondering if Enclojure has some basic s-exp functions, like > Surround-With-(). For different reasons, I've been constantly switching between NetBeans, IntelliJ and

Re: New release of the enclojure plugin is up.

2009-04-07 Thread CuppoJava
I'm just wondering if anyone who's tried this and the IntelliJ plugin can comment on how they compare. I'm wondering if Enclojure has some basic s-exp functions, like Surround-With-(). --~--~-~--~~~---~--~~ You received this message because you are subscribed to th

Re: New release of the enclojure plugin is up.

2009-04-06 Thread Michael Wood
On Tue, Apr 7, 2009 at 7:45 AM, billh04 wrote: > > I downloaded and installed NetBeans and the Enclojure plugin. > > I am not clear on how to setup the "main" class. > > I modified the "main" class generated by the template to look like the > following: > > = > (defn -

Re: New release of the enclojure plugin is up.

2009-04-06 Thread billh04
I downloaded and installed NetBeans and the Enclojure plugin. I am not clear on how to setup the "main" class. I modified the "main" class generated by the template to look like the following: = (defn -main ([args] (startNewAchiTask)) ([ ] (-main nil))) ===