I've been trying out Leksah (Haskell backwards with one L, in case you didn't notice). As I've worked through (among other things) the "99 problems for Haskell" and "20 intermediate Haskell problems", after some adjustment I've been fairly satisfied with Leksah.
Likes
By default, it attempts to compile your code every time you stop typing for about two seconds. It has some useful features for finding compile-time bugs and fixing them. It lets you execute code from within the editor, which is nice.
Another bonus is that it turns -> and => into actual arrow symbols, \ turns into a lambda symbol, and the . function is also transformed into its little circle symbol. The actual source file is unchanged, but inside the editor the symbols appear. It gives me a strange sense of superiority and pleasure to see these symbols in my code, and it's nice that I don't have to go copy/paste or hunt down the unicode symbol in order to get these symbols in there.
Also, I like how I can just cabal install leksah. Or if you're not into cabal, installers exist for Windows, Mac, and various Linux distros. It's open sourced under a GPL licence on hackage.
Dislikes
Annoyances include the requirement to set up a new "package" even if you just want to code up a quick little .hs script. It's a heavyweight compared to vim or emacs, which again is annoying for someone like me who frequently likes to try out snippets of .hs code that are slightly longer than is comfortable to write straight in ghci. Autocomplete is also quite zealous. Since type signatures in haskell often look something like a -> a , when you type the final 'a' and hit enter, it chooses the first autocomplete thing it finds that starts with 'a', which is ridiculous. Autocomplete has been improved upon since I wrote that.
Conclusion
If you get the same odd pleasure from symbols in your code and constant compilation, then you're like me, and you will like Leksah. Leksah has lots of useful tools if you intend to create packages and libraries and such; I highly recommend you at least try it out to see if it serves your needs.