vote up 26 vote down star
3

I typically use Emacs with hasktags for editing Haskell but I would like to enumerate all the choices and hopefully get feedback on each.

If you've used one of the above, please tell me what you liked and didn't like about using it as a Haskell editor. I'm especially looking for something that gives me control over lots of the project management issues. Hopefully it can quickly navigate to source, show me haddock snippets on demand, look up type signatures and even help with refactoring. Further integration with hoogle and lambdabot are appreciated as well.

flag

50% accept rate

9 Answers

vote up 4 vote down

I've mostly been using Vim. There are some instructions here about how to tweak your Vim config for Haskell.

I did also try using IntelliJ IDEA, which I use for Java. I found a syntax-highlighting extension for it.

EDIT: You can also add Haskell refactoring support to Vim and Emacs with the HaRe (Haskell Refactorer) project. I haven't tried it myself.

link|flag
What did you like and dislike about using Vim for this task? – Jason Dagit Sep 16 '08 at 20:29
Vim is Vim. You probably already know whether you love it or hate it. It's available on all the platforms that I use and it isn't Emacs. A combination of Vim and GHCi works reasonably well for me when developing Haskell. I can navigate between multiple files fairly painlessly. – Dan Dyer Sep 16 '08 at 23:09
vote up 4 vote down

I am surprised no one has mentioned notepad++. Can't really be called an IDE (but that's the case for most of those that were named in this thread anyway) but it highlights haskell syntax and has nice features as an editor.

link|flag
vote up 1 vote down

I agree with the comments about FUD. Haskell is as ready as a language can be. Unfortunatly it's also true that the whole "support tools" -- one is used to e.g in Smalltalk, Java, C, C++, Delphi, Visual Basic etc etc. -- is lacking. There is just the beginning of a debugger, in that regard e.g Ocaml is miles ahead of Haskell. Browsing facilities are also very "doubtful".

I'm using XEmacs mostly, but am fully aware that I wished for better support. I guess in the end not too many are that "unhappy" with it. Maybe it's just me....

Regards

link|flag
What are browsing facilities? – Jason Dagit Oct 16 '08 at 2:17
Well in Smalltalks there is alwaya a browser to browse the hierachy of Classes, one has something similiar in Haskell like e.g Num etc. and of course you've types like lists etc, and I'd found it nice if one could easy browse those types. – Friedrich Oct 19 '08 at 5:55
vote up 1 vote down

Try out E/TextMate. It has a Haskell Bundle for highlighting/folding, snippets of commonly used code and very tight integration with the shell for quick commands and building your own commands.

It doesn't auto-complete code, but it is light as hell and stays out of your way in the same way as Vi/Emacs (for which we love them).

main program (OS X)

main program (Windows)

get the haskell language bundle

link|flag
vote up 1 vote down

I've used EclipseFP and I thought it was "good enough", but I surely wouldn't call it great. Basic syntax highlighting (including the preamble but annoyingly hopeless at helping me with parentheses) and it integrates with the standard Outline view for navigation and a console view for an interactive GHCi or hugs session. That's pretty much it. It's a bit quirky depending on which Eclipse perspective you try to do things in, and I've had cases where the background compilation has either returned unhelpful error messages or simply stopped working at all.

Other than that, it doesn't offer much over a vanilla text editor. I still end up using :t and :r in the interactive session a lot, and still end up in a shell and digging out command-line options from the html help. There still seems to be a massive void for good 'visual' tools.

link|flag
vote up 0 vote down

I used both EclipseFP and VIM. I liked the background compilation feature in eclipse where you get annotations about possible compilation error during typing.

Can't say much about VIM - its just a matter of personal taste :)

link|flag
vote up 0 vote down

@ Marcin:

Haskell has seen much success in writing real applications (i.e. not theorem provers). Here is a link to a list of applications using haskell:

http://www.haskell.org/haskellwiki/Applications

To just mention a few:

XMonad: a window manager for X.

Monadius: a 3D fps opengl game.

Pugs: a working Perl 6 implementation.

Darcs: a very sophisticated revision control system. Some claim it has more useful features than git, but I wouldn't know personally.

Yi: an extensible text editor.

link|flag
vote up 0 vote down

Here is similar question: Haskell IDE for windows? with accepted answer.

link|flag
vote up -10 vote down

The problem with a good IDE for Haskell is that it doesn't yet exist (as of 2008 at least:-)). Haskell is a great language to have a good ide — because of its strong typing nature, it is absolutely possible to write one that would provide syntax completion, type inference, quick code navigation, refactorings and all the good stuff IDE users are used to.

That said, it would probably have to be written in haskell itself, or in a language that can easily call internals of one of haskell compilers. I bet that things like HIDE are the most promising.

That said, Haskell is not a production-ready language in which any serious developer would consider writing an application of substantial size (apart from theorem provers), so the need for IDE is not that important. Most of Haskell enthusiasts are happy using Emacs or Vim, and that serves their purpose well enough (I use the latter).

link|flag
11  
I was right with you until the FUD about Haskell. Haskell is a production-ready language. Several companies already use it for real work, typically things that need high levels of assurance. Several large programs have been written, GHC, darcs and perl6's pugs implementation come to mind. – Jason Dagit Sep 16 '08 at 20:27
3  
Lies and slander – Rayne Jan 7 '09 at 6:32

Your Answer

Get an OpenID
or

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