Ed Page

Results 4043 comments of Ed Page

> there are extra commits from master that were rewritten These commits are still around

Also, be sure to ping me when force-pushing; github doesn't send notifications for it.

Please clean up commits for how they should be reviewed and merged and not for how this was implemented

> @epage dropped the commits and force pushed Please rebase against the latest master and drop the unrelated commits

> > @epage dropped the commits and force pushed > > Please rebase against the latest master and drop the unrelated commits Please see https://github.com/clap-rs/clap/pull/6183/commits for what I'm referring to

Note that doc comments do not directly map to `#[arg(help = "")]` but are processed into `#[arg(help = "")]` and maybe also `#[arg(long_help = "")]`, see https://docs.rs/clap/latest/clap/_derive/index.html#doc-comments The long help...

```console Usage: n --ex1 --ex2 Options: --ex1 Ex1 --ex2 Ex2 -h, --help Print help -V, --version Print version ``` ```rust use clap::Parser; #[derive(Parser)] #[command(version, about, long_about = None)] struct Cli...

The `[]` context / specs have never really sat right with me and the more we add, the worse I feel the overall experience is. Take the updated example where...

> The real-world use case is a toy app that removes (neo)vim undofiles: Thanks for that example! I'll have to think on this > One option could be: > >...

As seen by #6099, we have tests that verify the content of `demo.md`. Also, based on #6099, I suspect the Actual and Expected might be backwards. Anyways. Whats happening is...