fuzzy icon indicating copy to clipboard operation
fuzzy copied to clipboard

Go library that provides fuzzy string matching optimized for filenames and code symbols in the style of Sublime Text, VSCode, IntelliJ IDEA et al.

Results 6 fuzzy issues
Sort by recently updated
recently updated
newest added

alternative `FindNoSort` method to do only fuzzy matching, without sorting. This might be useful when the list is already sorted by some other priority and you want to keep that...

Hi @sahilm For our personal use, we forked your project and merged interesting contributions from the community. The contributions in this merge request do not really change your original source...

Wondering if this lib could be used for spell checking? I know the algorithms for spell checkers can be much different than your classic auto complete fuzzy search jam, so...

Would it be difficult to add an option to have `fuzzy.Find()` ignore spaces? This would be nice to normalize the behavior with fzf. For example, if I am searching through...

This adds a fuzz target and quickly fixes a first bug found by it Reproducer for the bug is https://play.golang.org/p/ahd0SUU1J76 ``` package main import ( "fmt" "github.com/sahilm/fuzzy" ) func main()...