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
These could be collected and then released all at once, to reduce churn and have a single "BREAKING CHANGES" section in a single release.
--stdin-override-to is currently Option<bool> which is stupid and confusing. It should be its own enum along the lines of
--stdin-override-to
Option<bool>
enum StdinPresence { Heuristic, // previously `None` ForceOn, // previously `Some(true)` ForceOff, // previously `Some(false)` }
which would read much neater on the CLI and also be less of a headache to understand ("what does None mean again?")
None
The text was updated successfully, but these errors were encountered:
The most similar issues to this one are:
query
Sorry, something went wrong.
Relates to #149
No branches or pull requests
These could be collected and then released all at once, to reduce churn and have a single "BREAKING CHANGES" section in a single release.
--stdin-override-to
is currentlyOption<bool>
which is stupid and confusing. It should be its own enum along the lines ofwhich would read much neater on the CLI and also be less of a headache to understand ("what does
None
mean again?")The text was updated successfully, but these errors were encountered: