-
Notifications
You must be signed in to change notification settings - Fork 69
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
Add an '--all' flag to show all items. #109
Comments
@userzimmermann This might be a nice issue for you, if you're looking for other issues to work on here 😸 |
Definitely, @data-pup! I already created the branch for the PR... :) |
Awesome! Let me know if you need any help, @fitzgen or I would be happy to provide some guidance if you get stuck 😺 |
Don't worry ;) I'm still on it! But first had to deal w/ some confusion when running tests :D #116 |
And extend tests accordingly Relates to rustwasm#109
With an additional -a shortcut for the simple --all flag that combines listing all generics and monomorphizations Also extends tests accordingly Relates to rustwasm#109
With an additional -a shortcut for the simple --all flag that combines listing all generics and monomorphizations Also extends tests accordingly Relates to rustwasm#109
With an additional -a shortcut for the simple --all flag that combines listing all generics and monomorphizations Also extends tests accordingly Relates to rustwasm#109
With an additional -a shortcut for the simple --all flag that combines listing all generics and monomorphizations Also extends tests accordingly Relates to rustwasm#109
Looks like this has been closed? |
The "To Do" checkboxes in the top comment accurately reflect the current state of play. There are a number of commands that don't have an |
Heya all, I'd be willing to tackle this, but I'm new to this whole open source thing. Also, for the pub struct Top {
// ...
/// The maximum number of items to display.
#[structopt(short = "n", default_value = "4294967295")]
max_items: u32,
// ...
} Would this be fine to keep or if we're adding the all option, should the default be set to something smaller? perhaps 20 like |
Currently, we are working on adding logic to display summaries of truncated rows for different sub-commands in #88. This is nice because the number of items is displayed, but it would be nice if we had an
--all
option to simply display all items, instead of something like--max-items $BIG_NUMBER
.The
top
sub-command would be a nice place to start, but this should eventually be done for all of the subcommands.To Do:
The text was updated successfully, but these errors were encountered: