We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Often times recipes have very long names, like install-dev-dependencies.
install-dev-dependencies
It might be nice if just could allow you to run these recipes with less typing.
One idea is to have a wildcard character:
some-long-recipe: @echo Doing stuff... strip-binary: @echo Stripping binary...
$ just so~ Doing stuff... $ just s~ error: `s~` is ambiguous, possibilities are `some-long-recipe` and `strip-binary`
The text was updated successfully, but these errors were encountered:
I think this is probably unnecessary. If anyone wants this, feel free to comment and I'll open it and implement it.
Sorry, something went wrong.
No branches or pull requests
Often times recipes have very long names, like
install-dev-dependencies
.It might be nice if just could allow you to run these recipes with less typing.
One idea is to have a wildcard character:
The text was updated successfully, but these errors were encountered: