fendor

Results 740 comments of fendor

> I can't get it working with the -ghci-script=.ghci compiler option How does it manifest? In the logs you posted, I think you were missing the stderr and the result...

@maxild Native windows experience is quite pleasant, if you use https://hub.zhox.com/posts/introducing-haskell-dev/. My expierence with cabal and ghc was nice, so far. Just gotta be careful to have a clean environment...

@lspitzner thank you for this function! I attempted to implement this but failed due to the `ExactPrint.Anns` parameter which I could not obtain. Moreover, I was struggling to see how...

@lspitzner I think this sounds like a very reasonable API! I also think that we can obtain granular diffs between the original and new changes.

Wrapper script is automatically installed with the install script and is called `hie-wrapper`. You should check if it on the PATH via invoking `hie-wrapper`! Usually you just have to tell...

FYI, it uses either stack snapshots or the global cabal store, and unless there is a bug in either of them, it does not interfere with any other project.

I would not have considered it a plugin API, but I think I see what you mean. The intention would have been to extract code from [`Haskell.IDe.Engine.Cradle`](https://github.com/haskell/haskell-ide-engine/blob/master/hie-plugin-api/Haskell/Ide/Engine/Cradle.hs) since only roughly...

No, currently only hie uses it and hls copied the code to https://github.com/haskell/haskell-language-server/blob/master/src/Ide/Cradle.hs It is an alternative implementation to using the `implicitCradle` function. It is optional and would not affect...

Absolutely agreed. I think, somewhere it was mentioned that you agreed in bristol to use cabal-helper? Should there be an attempt to use cabal-helper in ghcide? EDIT: https://github.com/haskell/haskell-ide-engine/issues/1416#issuecomment-578409687 > ......

That is exactly how we integrated cabal-helper. It is hidden within a `Cradle` and you just query it, like any other cradle. Granted, the mechanism is not as light-weight as...