Open findepi opened 4 years ago
With
builder.withGroup("subcommand") .... .withCommand(Help.class);
running
x subcommand help
should print subcommand-specific help, just like x help subcommand does.
x help subcommand
This would play nicely when group has .withDefaultCommand(Help.class).
.withDefaultCommand(Help.class)
With
running
should print subcommand-specific help, just like
x help subcommand
does.This would play nicely when group has
.withDefaultCommand(Help.class)
.