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
Although it makes perfect sense to display usage and then description on command help, it may make more sense to display description first and then usage on program help. Otherwise default help output looks like:
Usage: MyProgram MyCommand
MyProgram is a super demo program (description)
Options:
--version
--myoption, -m demo option
Desired order:
MyProgram is a super demo program (description)
Usage: MyProgram MyCommand
Options:
--version
--myoption, -m demo option
The text was updated successfully, but these errors were encountered:
I do not think we are likely to make this change on its own. I have collected help related issues into #1225, and added this. One way of achieving what you suggest might be with a "prefix/banner" which has come up a few times.
Although it makes perfect sense to display usage and then description on command help, it may make more sense to display description first and then usage on program help. Otherwise default help output looks like:
Desired order:
The text was updated successfully, but these errors were encountered: