-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Removing autocomplete for all limit #3322
Removing autocomplete for all limit #3322
Conversation
"-l": "--limit", | ||
} | ||
choices["rates"] = { | ||
"--raw": {}, | ||
"--limit": {str(c): {} for c in range(1, 1000)}, | ||
"--limit": None, |
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 think these all need to be "--limit":{}
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.
@jmaslek whats the difference?
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.
actually I think it does not need to be that? I seethe line above we do {} instead of None so I wasnt completely sure.
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.
Fix merge conflict then we good 👍
Description
Fixes #3253 by removing limit autocompletion across the entire terminal.
Others