ottop / yam_launcher

A minimal android launcher with weather integration.
MIT License
34 stars 2 forks source link

add simple fuzzy search #20

Closed alrajdev closed 1 week ago

alrajdev commented 1 week ago

This change enables to fuzzy search app names. Existing search matches the search sequence exactly with the app name. This pull request will allow searching app names with letters in order instead of the exact sequence.

This will allow to search like: 'cmr' => Camera 'clk' or 'cck' => Clock 'fx' => Firefox

But this will also change existing behavior: status quo: 'cl' => Clock fuzzy search: 'cl' => Clock, Calendar

Note: This will not work on Contact search, since we are filtering contacts with Cursor

ottop commented 1 week ago

Thanks. I'll test this out and merge if all is good.

ottop commented 1 week ago

Seems to work.

Thanks a whole lot. I'll merge it.