Harold
Harold
Same problem here, first clone went ok, same problem when doing subsequent pull/fetch
Hey @dinhxuanvu , are we able to move this forward?
Hey folks, I'd like to work on this
@erickt This function was needed for https://fuchsia-review.googlesource.com/c/fuchsia/+/688982 in this case, we want to drop the support for ``` ffx log --filter ... dump ffx log --filter .. watch ``` But...
Side note, https://github.com/google/argh/issues/15 is tangentially related
@erickt @miguelfrde The trick won't really work because 1. options gets parsed by the top level command regardless and will not get a chance to be populated into unknown args...
@erickt I have implemented alternative style for defaults ```rust #[derive(FromArgs)] struct TopLevel { #[argh(subcommand), default = "SubCommandOne"] nested: MySubCommandEnum, } #[derive(FromArgs)] #[argh(subcommand)] enum MySubCommandEnum { #[argh(default)] One(SubCommandOne), Two(SubCommandTwo), } ```...