fuzzysort
fuzzysort copied to clipboard
Even when the threshold is -Infinity there is filtering happening.
Even when the threshold is -Infinity there is filtering happening. I need to preserve the entire set I am sorting -- I just want to sort it. Can I do that?
no. if it's not a match it won't be returned. but you can simply manually add everything else back into the end of your results.
Having an empty result for fuzzysort.go('Value Abc', ['Value', 'Other'], { threshold: -Infinity })
seems incoherent to me
Having an empty result for
fuzzysort.go('Value Abc', ['Value', 'Other'], { threshold: -Infinity })
seems incoherent to me
yeah i understand, but this is how sublime text works so i'm not considering it an issue for now