tfausak / purple-yolk

:hatching_chick: A Haskell IDE for Visual Studio Code.
https://marketplace.visualstudio.com/items?itemName=taylorfausak.purple-yolk
MIT License
26 stars 2 forks source link

GHCi command fails with quoted arguments #11

Closed tfausak closed 4 years ago

tfausak commented 4 years ago

If you try to set the GHCi command to something like stack ghci --ghc-options '-O0 -j4', it will fail. I think that happens because it ultimately called child_process.spawn, which passes each argument separately. If instead it called exec I don't think that would be a problem.