Configuring emacs for haskell

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

PS I am using haskell mode with ghc-mod add-ons. I like it, but it does not support symbol navigation, and its completion does not look like an IDE, but it is suitable for use.

+6
source share
2 answers
+1
source

Enable haskell support in autocomplete package - it will complete pragmas, function names, etc. haskell-mode also includes support for hlint and haskell searches - for checking source code for bad code, etc. There was work on Haskell support in CEDET, but it was not completed :-( Implementing such support in CEDET will automatically “type” navigation and code completion, since CEDET implements this ready-made code ...

+5
source

Source: https://habr.com/ru/post/920623/


All Articles