-
Notifications
You must be signed in to change notification settings - Fork 87
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
Offer ability to short circuit help output (Ex: -h) #30
Comments
Alternatively, to let the programmer decide (because maybe they want to use I.e. this function: Line 22 in c752b5f
But wrapped in a nicer way, callable as a method on the struct that |
I'd be far more amicable to that change! That seems like a good option for those that want |
I'd also like to see an
Therefore, I think either the user should be given the option to specify a shorthand for the help message, or be able to "replace" the help switch altogether. Let me know what you think. |
oh interesting, yes that makes sense. I'm open to a change like that! |
Agreed on the |
I made a pull request that fixes this issue #106 |
Currently, passing
-h
doesn't work:Passing
-h
should work the same as--help
, unless one of the options/switches usesshort = 'h'
.And in the Usage output, it would then show
instead of just
The text was updated successfully, but these errors were encountered: