-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Help Formatting for Multiple Args is Incorrectly Indented #513
Comments
Ah yes this was a recent change and I didn't change the formatting thanks for filing this! I'm on vacation, so it may be a few days until I get to this but it'll be a quick fix once I get home. |
I'm not able to reproduce this one. Could you send me either which version of |
Happens with current version of clap: pub fn make_app<'a, 'b: 'a>() -> App<'a, 'b> {
App::new("blah")
.setting(AppSettings::UnifiedHelpMessage)
.arg(Arg::with_name("command")
.value_name("command")
.help("Command to execute"))
.arg(Arg::with_name("args")
.value_name("args")
.multiple(true)
.required(false)
.help("Arguments to the command"))
} |
Results in this:
|
With debug output:
|
@mitsuhiko is this still the case with the latest 2.10.4? |
I'm going to close this issue since I can't seem to reproduce in current version. Please let me know if this still an issue and we can re-open. |
Example:
It seems like it adds the three dots to it.
The text was updated successfully, but these errors were encountered: