atom-haskell / ide-haskell

Haskell IDE plugin for Atom editor
https://atom.io/packages/ide-haskell
Other
233 stars 30 forks source link

Support for larger project with multiple yaml files #221

Closed varosi closed 3 years ago

varosi commented 6 years ago

An option to select which Stack YAML file to be used for all Stack operations. Usually different files are used for different LTSes or different OSes. Our project is multi-yaml file and currently cannot be built in ide-haskell.

lierdakil commented 6 years ago

This was on my TODO list for a while, but I didn't manage to get to it yet. As a kind of a workaround, setting STACK_YAML environment variable either before starting Atom, or from console with process.env.STACK_YAML='...' works well enough.

varosi commented 6 years ago

Great! 10x!