flutter_ecommerce_app icon indicating copy to clipboard operation
flutter_ecommerce_app copied to clipboard

[Feature Request] Fuzzy matching as a fallback

Open 0xC0FFEE opened this issue 5 years ago • 0 comments

One feature I really liked in fasd is, that fuzzy matching is performed, when the other matching algorithms to not yield a result.

Comparison of matching algorithms in fasd and z.lua:

fasd

  1. Queries match the path in order (same as default method).
  2. The last query matches the last segment of the path.
  3. If no match is found, fasd will try the same process ignoring case. If still no match is found, fasd will allow extra characters to be placed between query characters for fuzzy matching.

z.lua

  1. Queries match the path in order (same as default method).
  2. The last query matches the last segment of the path.

Did you consider to make the 3rd matching algorithm available in z.lua?

0xC0FFEE avatar Feb 12 '19 18:02 0xC0FFEE