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
According to the documentation "USAGE: %c %o" is the default usage_string. For my program I have configured 2 additional short options -d and -V but they are not shown when I am asking for short (-h) or long help (--help)
USAGE: my_program [-h] [long options ...]
If I am changing the import to this
use MooX::Options usage_string => 'USAGE: %c %o';
I get the expected result
USAGE: my_program [-dhV] [long options ...]
The text was updated successfully, but these errors were encountered:
According to the documentation "USAGE: %c %o" is the default usage_string. For my program I have configured 2 additional short options -d and -V but they are not shown when I am asking for short (-h) or long help (--help)
USAGE: my_program [-h] [long options ...]
If I am changing the import to this
use MooX::Options usage_string => 'USAGE: %c %o';
I get the expected result
USAGE: my_program [-dhV] [long options ...]
The text was updated successfully, but these errors were encountered: