You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
In recent years it's become more and more common to split the usages of a program into multiple sub commands, i.e. cargo has cargo run, cargo build, ... each with their own, specific help. But halp doesn't support multi word commands without quoting.
Describe the solution you'd like
It would be great if one could just do halp cargo build and get help for the build subcommand.
Describe alternatives you've considered
It's currently possible to get that help by simply quoting the command halp "cargo build", therefore it might not be worth the effort to support multiple words further than escaping.
The text was updated successfully, but these errors were encountered:
It seems like a reasonable feature, but I took a fast look at the current implementation for the CLI arguments parsing and I can't find an inexpensive way to implement this feature
Is your feature request related to a problem? Please describe.
In recent years it's become more and more common to split the usages of a program into multiple sub commands, i.e. cargo has
cargo run
,cargo build
, ... each with their own, specific help. Buthalp
doesn't support multi word commands without quoting.Describe the solution you'd like
It would be great if one could just do
halp cargo build
and get help for the build subcommand.Describe alternatives you've considered
It's currently possible to get that help by simply quoting the command
halp "cargo build"
, therefore it might not be worth the effort to support multiple words further than escaping.The text was updated successfully, but these errors were encountered: