You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 7, 2020. It is now read-only.
Not sure if this is planned and obvious, (or possibly against the philosophy of haskell-ide-engine), but it is probably a good idea to be able to import a project from git with a single command. I have found it somewhat annoying to import projects into IDEs like Eclipse, IntelliJ, and we should do a better job at integrating. I like the way that stack handles its git support.
The text was updated successfully, but these errors were encountered:
At least in the current state hie doesn’t do project management but we expect an existing cabal or stack project. Until that changes I am not really sure what git integration would mean.
It seems like everyone expects hie to work with either stack or cabal. I hope at some point it will get functions to figure out the root directory of a project (eg, given a .hs filepath) and decide what build tool to use. Otherwise every IDE has to write these functions, and uses different heuristics. So maybe a little bit of project management?
@bergey This is already done by ghc-mod (and hie uses it for initializing ghc sessions). It finds the root directory and decides to use stack or cabal.
Not sure if this is planned and obvious, (or possibly against the philosophy of
haskell-ide-engine
), but it is probably a good idea to be able to import a project from git with a single command. I have found it somewhat annoying to import projects into IDEs like Eclipse, IntelliJ, and we should do a better job at integrating. I like the way thatstack
handles its git support.The text was updated successfully, but these errors were encountered: