fendor
fendor
Sometimes you want to copy a file and its whole history, without renaming or deleting the original source. Kind of like branching without ever merging. Is that already possible, or...
@jneira found that it happens on our install script project when you have *never* built it before. Steps to reproduce: ```bash git clone https://github.com/mpickering/haskell-ide-engine hie cd hie/install code . ```...
Example error message: https://gist.github.com/fendor/35e7c50cc97d7b098c4bd683306b9a23 Crashes the ghc thread and renders most hie requests unresponsive. Sometimes you can see an endless progress message trying to compile a certain file. Happens to...
Relevant issue seems to be https://github.com/commercialhaskell/stack/issues/4564. Seemingly, `stack repl` does not work on a projet with an internal library. If you supply the flag `stack repl --no-package-hiding` it works, however,...
``` Expected Right "```haskell\nhead :: [a] -> a\n```\nExtract the first element of a list, which must be non-empty.\n\n[More info](https://hackage.haskell.org/package/base/docs/Prelude.html#v:head)" but got Right "```haskell\nhead :: [a] -> a\n```\n. Extract the first...
Open Haskell IDE Engine `app/MainHie.hs` with the implicit stack cradle and an error should be produced, such as `cannot satisfy -packge haskell-ide-engine-`. cc @Gurkenglas
```bash > .\cabal-hie-install help ******************************************************************************** No ghc installations found in $PATH. The script requires at least one ghc in $PATH to be able to build hie. ******************************************************************************** No ghc installations...
HaRe has been removed to make it easier to merge #1126 and to switch to `hie-bios`. We want it back, though! The blocking issue was how to obtain a global...
Talking with @jneira on irc, we realized this makes it easier to share code between the projects hie, hls and, potentially, ghcide! Code would be entirely taken from `Cradle.hs` in...