Better app search filter #226
nico7master
started this conversation in
Ideas
Replies: 1 comment 4 replies
-
The current implementation is intentional because it allows users to develop their own shortcuts to quickly open apps. For example, I type pp to open WhatsApp, tt to open Twitter, gr for Instagram, etc. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to request a change, but I am new to kotlin and this process in general so would be amazing if someone could take my pseudo code and put it into actual code ;)
I would like to change the filter when you search and type the name of the app.
The current implementation is that it looks if any app name contains the typed chars. But that doesn't make sense most of the time since you would never look up an app from the middle of the name and it creates to many false positives imo.
So a better way would be the startwith function, looking only from the start of the name. But a app name could have multiple words in one so you would first create an array of the words separated by a space and the look though each of them and see if they start with your typed chars.
Hope that makes sense and someone is willing to make the change.
I really like the launcher but this often annoyed me since sometimes there is only one app starting with those 2 letters but it gives 6 because those letters also are contained.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions