You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mini.starter intentionally doesn't support fuzzy finding. However, allowing users to provide an "is item active" function would allow users to modify the query process themselves to add fuzzy-like functionality without impacting the design of starter. Is this a feature that might be considered?
A simple implementation would just be to allow starter's config to accept an is_item_active property that, when set, would override H.is_item_active.
The text was updated successfully, but these errors were encountered:
I'd rather have something like config.item_match to be a function(item, query) which returns true / false. At first glance seems reasonable, I'll take a look.
Nice, I wasn't aware of that one. It seems like it would require a bit more refactoring, though, since it works over the whole list rather than with a single item.
For my own use I'm not so concerned with fuzzy matching as just not always matching from the beginning of an item, because the part of a file name or path that really stands out (to me) may not always be at the beginning.
Contributing guidelines
Module(s)
mini.starter
Description
Mini.starter intentionally doesn't support fuzzy finding. However, allowing users to provide an "is item active" function would allow users to modify the query process themselves to add fuzzy-like functionality without impacting the design of starter. Is this a feature that might be considered?
A simple implementation would just be to allow starter's config to accept an
is_item_active
property that, when set, would overrideH.is_item_active
.The text was updated successfully, but these errors were encountered: