-
Notifications
You must be signed in to change notification settings - Fork 704
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cabal new-repl without a project #5425
Comments
another possible syntax:
maybe we could add other commands in the future to the |
@int-index you can try https://github.com/hvr/cabal-env for now, which is supposed to be a UI prototyping sandbox for what a possible UI for cabal could be. Your use-case is handled by
Once we've gained enough experience with the PS: I don't like the |
@hvr thank you, |
@int-index btw, please feel free to suggest enhancements to |
Sometimes I just need to check a couple of things in GHCi, not specific to any project. I could run
ghci
, but then I don't get access to any packages except the ones that are installed globally.With
stack
I can runstack ghci --package lens
, for instance.With
cabal
I have to create something like this:and then run
cabal new-repl
in a directory with this.cabal
-file.I'd prefer to write
cabal new-repl --package lens
:dist-newstyle
in the current directory, instead it could use~./cabal/dist-global
or similarThe text was updated successfully, but these errors were encountered: