Replies: 1 comment 1 reply
-
As in different output for |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Coming from clap, help is expanded by using the
long
option, not by repeating either the short or long flag. This makes a lot of sense for me and I would like to preserve this behavior as bpaf's default is a bit unfamiliar, and I'd imagine it will be to users as well. Perhaps an enum likeExpandedHelpBehavior { Repeat, ShortLong, Always }
that can be passed to the command parser would workBeta Was this translation helpful? Give feedback.
All reactions