We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am noticing the help text for commands are being truncated, see screenshot below:
The command.get_short_help_str() method is used to generate help strings for in the _format_subcommand function.
command.get_short_help_str()
_format_subcommand
This methods defaults to truncating at limit=45: get_short_help_str(limit=45):
limit=45
get_short_help_str(limit=45)
Would it be possible to make this behavior configurable, and allow for us to get the full help text for sub-commands?
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
I am noticing the help text for commands are being truncated, see screenshot below:
Reason
The
command.get_short_help_str()
method is used to generate help strings for in the_format_subcommand
function.This methods defaults to truncating at
limit=45
:get_short_help_str(limit=45)
:Solution
Would it be possible to make this behavior configurable, and allow for us to get the full help text for sub-commands?
Thanks!
The text was updated successfully, but these errors were encountered: