fendor
fendor
Installation script executes `git submodule update --init` anyways, right? So, we are still future-proof in a way
Some of these issues should be fixed by #1126, so maybe we can try again to enable azure-ci testing, once that pr has landed.
This would be great! maybe we should start poking members of the haskell organizations to enable azure for this project?
That looks like a stack issue. Can you use `stack` on other projects successfully?
#1596 is related to this but applied to hie-bios.
Hie uses Hoogle for Documentation if Haddock are not present. However, there are features such as the import functionality of `HsImport` that depend *only* on Hoogle. So, yeah, you are...
Example: ```haskell main = hPutStrLn stderr "Error" ``` Can be turned with two code actions into: ```haskell import System.IO (hPutStrLn, stderr) main = hPutStrLn stderr "Error" ```
There are some caveats though: it can only be used to import symbols from external libraries, nothing from the local project and import of types is broken, atm. The issue...
Interesting, maybe related to https://github.com/haskell/haskell-ide-engine/issues/1567?
Can you also try to run in `--debug` mode and link the logs of the full process, e.g. first it works, then it doesnt? Either by defining a custom hie-wrapper...