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
For example, using .helpOption ('-h, --help, --something-else') and running with --something-else results in
.helpOption ('-h, --help, --something-else')
--something-else
error: unknown option '--something-else', while -h and --help still work.
error: unknown option '--something-else'
-h
--help
Use case: not sure about others, but me personally, I'd also like to add -? as an extra help flag.
-?
The text was updated successfully, but these errors were encountered:
Options support a short flag and a long flag, and this applies to the built-in version and help options too.
Sorry, something went wrong.
I see, so I guess no luck adding a third option.
No branches or pull requests
For example, using
.helpOption ('-h, --help, --something-else')
and running with--something-else
results inerror: unknown option '--something-else'
, while-h
and--help
still work.Use case: not sure about others, but me personally, I'd also like to add
-?
as an extra help flag.The text was updated successfully, but these errors were encountered: