radicle-dev / radicle-surf

A code browsing library for VCS file systems.
Other
32 stars 11 forks source link

Fuzzy Find #66

Open FintanH opened 4 years ago

FintanH commented 4 years ago

Allow for fuzzy finding of paths in the directory tree. This would likely return a list of directories and files, instead of Option.

Some research of fuzzy finding implementation could help. One option would be to look at levenshtein distance for computing the fuzziness.

cloudhead commented 4 years ago

Perhaps a wrapper around https://github.com/jhawthorn/fzy -- it's really good!

uint commented 3 years ago

https://github.com/lotabout/fuzzy-matcher?

FintanH commented 3 years ago

https://github.com/lotabout/fuzzy-matcher?

Looks nice, would be nice to see an MVP of it in use