I'm looking for an editor or an IDE for my Clojure coding and I found this thread:
Clojure editor/IDE recommendations on Mac OS X

However I have a couple of questions:
Which IDE offers the best Clojure environment (right now): IntelliJ, Eclipse or NetBeans?
What are the advantages of Aquamacs (I read Rick is using it) over the previous heavy-weight IDEs?

link|improve this question

79% accept rate
possible duplicate of Clojure editor/IDE recommendations on Mac OS X – Rayne Nov 22 '10 at 17:43
I referred to that thread at the beginning of my question. – Chiron Nov 22 '10 at 17:51
feedback

5 Answers

up vote 17 down vote accepted

I have spent significant chunks of time (on a Mac) with:

  • Textmate w/ Clojure bundle
  • Netbeans Enclojure
  • Eclipse CCW
  • Emacs.app (not Aquamacs)

My opinions on those:

Textmate - was a great way to get started and is obviously a very functional text editing environment. At some point I wanted better REPL integration.

NetBeans - not wanting to learn Emacs, I switched to NetBeans. The NetBeans editor is ok. I found the integration with build tooling for things like Maven was rocky. The NetBeans remote repl is very very good.

Emacs - I eventually bit the bullet and learned Emacs. Editing with paredit is truly god-like. REPL integration is glorious as you'd expect. clojure-test-mode is very handy. But it's Emacs with all its pros and cons. If you're going to use Emacs on the mac, I'd recommend using Emacs.app, not Aquamacs. Aquamacs does not follow standard gnu emacs conventions and you'll find it harder to create a portable environment or use other people's extensions. Right now, I use Emacs for day-to-day editing and my normal work environment.

Eclipse - The Eclipse editor is coming along and the structural editing has some of the niceties of paredit (but not the truly essential slurp, barf, splice capability). The Eclipse repl is just a stock command-line repl and is pretty bad in comparison to NetBeans. However, the NetBeans remote repl has been broken out into an independent project and is coming very soon to Eclipse which will make Eclipse even more attractive. Maven integration is very good. I use Eclipse now when I want to see lots of files and projects at once, which I have a hard time doing in Emacs.

At the moment, my bet is that the Eclipse tooling will start to pull away from the others. But I'm still hoping for a Clojure-specific IDE to show up. :)

link|improve this answer
Thanks for the great answer. personally I wish if TextMate has a much better bundle for Clojure coding. – Chiron Nov 22 '10 at 18:31
+1 to Emacs.app – Matti Pastell Nov 23 '10 at 8:23
I do not think that I will use Emacs forever but I have to say (from the other side) that I am glad that I invested the time to learn Emacs, if only to understand the pathos and pair with my Emacs-wielding brethren. – Alex Miller Nov 24 '10 at 4:50
+1 for a great answer. Note that the Eclipse REPL now uses the much superior nREPL (as of counterclockwise 2.0) – mikera Apr 3 '11 at 16:48
feedback

I have used both vim, emacs, and Intellij. Of the three I'm most productive in emacs.

Before writing Clojure I had been using vim for four years (and before that emacs for three) and considered myself among the best of the other developers I knew with regards to efficiency in vim. As a result I started out using it for Clojure. I found it to be painful. I was using vimclojure and only vimclojure. About a month after I switched to emacs I stumbled across this post. Had I read that before switching to emacs I could see myself enjoying that setup.

I've since switched to emacs and completely believe the learning curve is worth it but it isn't for everyone.

link|improve this answer
feedback

I use MacVim with VimClojure and am happy with it. But I'm kind of biased...

link|improve this answer
feedback

Agree with Alex. I have tried NetBeans,Emacs, Textmate and Eclipse on OSX. For now, Eclipse is a better choice. BTW, it also depends on your background. If you are a Java programmer Eclipse is a very good choice. Sometimes, I use the REPL - for example to try out Clojure 1.3 Alpha3. We do need a Clojure-specific IDE; something like Komodo.

link|improve this answer
feedback

I quite like jEdit which is a fairly general purpose programmer's text editor. It has syntax highlighting and a Clojure REPL available as a plugin.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.