Syntax coloring for Haskell?

I started using Haskell today and am following a tutorial through learnyouahaskell.com. However, in the textbook, all their syntax is automatically painted in the terminal. I use Command Prompt through ConEmu and wondered if there is a way that I could also get this coloring (easily). I searched for downloads or offers on the Internet and found nothing. I have Notepadd ++ when I want to create .hs files, but nothing for the terminal itself after ghci initialization.

+4
source share
1 answer

I would suggest using Emacs with haskell-mode. I'm a fan of Emacs and I just started learning Haskell too, haskell-modeworks great. I do not know if there is something similar for Notepad ++.


Here is a complete list of editors that support Haskell highlighting. As for terminal coloring, I doubt it will be easy on Windows (you're on windows, right?), You need an IDE.

+4
source

All Articles