-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
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
Massage --help text to use max 72 characters width #2799
Conversation
Can you limit it to 72 characters instead? That is my personal preference for line character limit; and that is the character limit the top part of the output of |
@emanuele6 adjusted to 72, looks like this now:
|
" -e, --exit-status set exit status code based on the output;\n" | ||
#ifdef WIN32 | ||
" -b, --binary open input/output streams in binary mode;\n" | ||
#endif |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess we can remove "on Windows" if we do it conditionally?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$ ./jq --help >/dev/null 2>&1 | jq -nR 'all(inputs; . <= 72)'
true
The commit message still says |
Updated the commit message and github issue title, but the branch name will say 80 |
The name of the branch doesn't matter ^^ |
Ah yes we don't use merge commits so branch name will not appear. Sorry for retrigger. |
Thanks! |
No description provided.