-
Notifications
You must be signed in to change notification settings - Fork 18
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
Support lowercase matched auto completion #44
Comments
Prefix matching is only the convention. You can implement a |
Wow! It actually works! I tried this before, just not realized it works that way. If the |
Well, |
@TheWaWaR: Wow, that is elaborate. I don't envision |
First, thank you for your really cool project : )
The doc of
Completer::complete
says:As I understand, it only support prefix based auto completion. However, if auto competion support lowercase matched candidates would be more cool.
Suppose we have subcommands below:
count
checkout
branch
If we type
ou
, the matched candidates will becount
andcheckout
.The text was updated successfully, but these errors were encountered: