haskell-mode
haskell-mode copied to clipboard
Emacs mode for Haskell
``` {-# LANGUAGE DataKinds #-} {-# LANGUAGE KindSignatures #-} {-# LANGUAGE PolyKinds #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeOperators #-} {-# LANGUAGE UndecidableInstances #-} module TypeLevelDefunctionalization where import Data.Kind...
I'm attempting to use the Haskell compile error navigation features advertised in Sec. 13.1 of [this document](http://haskell.github.io/haskell-mode/manual/latest/Interactive-Haskell.html#Interactive-Haskell), but it's not working. I have two problems: 1. The advertised key bindings...
In haskell-lexeme.el, changes to categories are leaking to other modes.
I see that there is some support for the debugger but I haven't been able to make it work in the context of a life-size project. Would a GUD backend...
In the Haskell customize group there is only: - Haskell Completing Read Function - Haskell Language Extensions - Haskell Stylish On Save - W3m Haddock Heading Face and the Haskell...
[`haskell-compile`](https://github.com/haskell/haskell-mode/blob/dd0ea640fa449d021399a17db65e4d50d3f0f2a9/haskell-compile.el#L115) doesn't currently detect projects unless it finds a `.cabal` file, so it doesn't work with projects using hpack. It would be cool if it ran `stack build` in those...
The above error happens whenever I try to load a buffer into the haskell interactive process (`C-c C-l` or `haskell-process-load-file`). I orginally thought it was an issue with `ghc-mod`, but...
Currently `haskell-mode` seems to rely on a pile of rather fragile regular expressions for getting information out of GHCi. However, GHCi is not intended to be a language server; rather,...
It seems `haskell-align-imports` does not work when the qualified name contains Unicode (like Greek characters). Try for yourself: ``` module Test where import qualified Prelude as Π import Data.String as...