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
The last character in the usage message of ArgGroups seems to always be missing.
ArgGroup
For example this code
App::new("demo") .arg(Arg::with_name("foo").long("foo")) .arg(Arg::with_name("bar").long("bar")) .group(ArgGroup::with_name("options").required(true).args(&[ "foo", "bar" ])) .get_matches();
displays the group as [--foo|--ba]
[--foo|--ba]
The text was updated successfully, but these errors were encountered:
As I said in the PR, thanks for finding, filing, and fixing this! 👍
Sorry, something went wrong.
Auto merge of #479 - kbknapp:issue-476, r=kbknapp
be670e6
Issue 476 From #477 Relates to #476
ddd50ed
2bbc1a2
Issue 476 From #477 Closes #476
eb5b299
No branches or pull requests
The last character in the usage message of
ArgGroup
s seems to always be missing.For example this code
displays the group as
[--foo|--ba]
The text was updated successfully, but these errors were encountered: