ghc-mod
ghc-mod copied to clipboard
Happy Haskell Hacking for editors. DEPRECATED
``` $ head -n 1 ./test #!/usr/bin/env runhaskell $ ghc-mod check ./test ghc-mod: target ‘./test’ is not a module name or a source file ``` ghc-mod version 5.2.1.2 compiled by...
https://github.com/soenkehahn/dead-code-detection
When using ghc-mod with stack, the mode gets deactivated when it encounters a "dist" directory. That means relying on the side effects from some aggressive "cabal configure" of some other...
Most of the complexity of [`map-file`](https://github.com/kazu-yamamoto/ghc-mod/pull/484/files) seems to come from the fact that we need to splice the original file path into places where the temporary file name used to...
So... I've been thinking about improving interactive interface, and I've got a question. Are there any plans to make library interface more typeful? As it is, it mostly returns `String`s...
We should be able to look for package-dbs that might contain packages that cannot be satisfied. Also this seems to be caused by GHC version conflicts.
Running ghc-mod on its own test code fails, as it doesn't see the correct packages: Running `ghc-mod info src/GHCMod.hs foo` has the correct behaviour, but running `ghc-mod info test/Main.hs foo`...
Hey, I'm trying to figure out how ghc-mod works, and I get an error for a case which I believe should work. I have a file named "test.hs" with ```...
I don't have much more details to report as I can't identify what's the trigger for this problem, but some times functions or values have type variables replaced by `ghc-prim-0.4.0.0:GHC.Prim.Any`....
Currently if I type C-cC-m on >>> in Emacs then ghc-mod will successfully include an explicit import `Control.Arrow ((>>>))` replacing `Control.Arrow`. It would be nice to have this feature for...