-
The following piece of code:
```haskell
foo = (even $ 5) || False
```
(valid)
Gets parsed to the same ast as:
```haskell
foo = even $ 5 || False
```
(type error)
-
I followed the install instructions precisely but got this:
Install package: haskell-mode [No match]
I'm running GNU Emacs 26.2 on macos 10.14.4
-
in my emacs + macos , with ghc 7.8.4. the debug as following :
![snip20150308_1](https://cloud.githubusercontent.com/assets/1628109/6545002/dfa7feb8-c5a6-11e4-8428-1b0b57959928.png)
the source code…
-
Hi,
this is a tricky one: As not all architectures in Debian support Template Haskell, every TH-using package needs a build-dependency on the virtual package `ghc-ghci`.
Now the correct way to detec…
-
```
This is a test description [feedback gci task]
```
Original issue reported on code.google.com by `feedback...@gmail.com` on 12 Jan 2012 at 1:04
-
```
This is a test description [feedback gci task]
```
Original issue reported on code.google.com by `feedback...@gmail.com` on 12 Jan 2012 at 1:04
-
Running `magit-blame` on a file with `haskell-mode` causes the RET key, which should normally run `magit-show-commit`, to instead attempt to run `haskell-indentation-newline-and-indent` (which doesn't…
-
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 D…
-
For example, to build a Haskell project there are several established ways, which are scattered along the docs, blog posts and so forth. It would be good to have an overview page of all these ways, li…
-
First of all, thank you for this library and the great work !
I've posted this [question](https://stackoverflow.com/questions/78999597/using-streamly-in-haskell-to-run-a-repl-in-background) on stac…