Ed Page
Ed Page
The multi-crate aspect isn't too clear to me as to why you can't just do ```rust #[derive(Args)] #[command(disable_help_flag = true)] struct Foo { #[arg(long)] common_flag: Option, #[arg(long, hide_short_help = true)]...
> I was thinking of something like hide_unless_present, along the lines of [required_unless_present](https://docs.rs/clap/latest/clap/struct.Arg.html#method.required_unless_present). Then you could write a subcommand like so: The problem with this is that the help action...
> Hmm, suppose this works, though you're still limited to only having two "versions" of the help page. I.e. you could not have something like --help-feature-one and --help-feature-two. Keep in...
@pksunkara at https://github.com/clap-rs/clap/pull/6088#issuecomment-3150968893 > @epage I don't have much context here, but we specifically say that the help text is not markdown, right? IIRC, I had some discussions about this...
Correct, we do not specify the output is markdown. What we are missing is turning of ANSI escape codes into ROFF. I'm playing around with it but its showing some...
> could you please explain it in details with some context? and how it's related to the current issue. While ANSI escape codes can't help with bulleted lists, they can...
Not mentioned in this thread is that #6088 replaced blank lines with `.PP`. We do that for `long_about` but none of our other user-provided text. It likely deserves an issue...
From https://github.com/toml-rs/toml/blob/main/CONTRIBUTING.md > Already have an idea? It might be good to first [create an issue](https://github.com/toml-rs/toml/issues/new) to propose it so we can make sure we are aligned and lower the...
After refreshing myself on this code and the motivations for its design, my concerns are - I am uncertain what the right line is for what deserializers to provide. Currently,...
> In my case, I don't need them since I don't need to know the specific type of the content, and I just need to know it's an Item that...