Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Setting up emacs for haskell [closed]

Tags:

emacs

haskell

Which emacs extensions do you use and how do you configure it to work productively?

P.S. I use haskell mode with additions of ghc-mod. I like it, but it doesn't support navigation to a symbol and completion doesn't look IDE-like but it's stil usable.

like image 562
Konstantin Solomatov Avatar asked Jul 16 '12 19:07

Konstantin Solomatov


2 Answers

Enable haskell support in auto-complete package - it will complete pragmas, function names, etc. haskell-mode also includes support for hlint & haskell scan - to check source code for "bad" code, etc. There was work on Haskell support in CEDET, but it wasn't finished :-( Implementing of such support in CEDET will allow to get symbol navigation & code completion "automatically" as CEDET implements this out-of-box...

like image 187
Alex Ott Avatar answered Oct 23 '22 20:10

Alex Ott


There is some information at the haskell wiki.

like image 26
coelhudo Avatar answered Oct 23 '22 19:10

coelhudo