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
When you have a small terminal width, your code has wrap_help feature enabled, and you have args of which some have about very small so that the arg can fit in the terminal width and other args whose about is big such that they would be wrapped, we get the following:
Actual Behavior Summary
cargo-workspaces-version
Bump version of crates
USAGE:
cargo workspaces version [FLAGS]
FLAGS:
-a, --all
Also do versioning for private crates (will not be published)
--exact
Specify inter dependency version numbers exactly with `=`
-h, --help Prints help information
--no-git-commit Do not commit version changes
--no-git-push
Do not push generated commit and tags to git remote
Expected Behavior Summary
The display should be consistent.
cargo-workspaces-version
Bump version of crates
USAGE:
cargo workspaces version [FLAGS]
FLAGS:
-a, --all
Also do versioning for private crates (will not be published)
--exact
Specify inter dependency version numbers exactly with `=`
-h, --help
Prints help information
--no-git-commit
Do not commit version changes
--no-git-push
Do not push generated commit and tags to git remote
Additional context
This needs to be consistent per section. If all the args can fit inside the wrapped width, then we can just do one line. If not, then all of them should be in the new line format.
The text was updated successfully, but these errors were encountered:
pksunkara
added
C-bug
Category: Updating dependencies
A-help
Area: documentation, including docs.rs, readme, examples, etc...
labels
Oct 13, 2020
When you have a small terminal width, your code has
wrap_help
feature enabled, and you have args of which some haveabout
very small so that the arg can fit in the terminal width and other args whoseabout
is big such that they would be wrapped, we get the following:Actual Behavior Summary
Expected Behavior Summary
The display should be consistent.
Additional context
This needs to be consistent per section. If all the args can fit inside the wrapped width, then we can just do one line. If not, then all of them should be in the new line format.
The text was updated successfully, but these errors were encountered: