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
{{ message }}
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
I guess we need to optimize the search for typical nix user expectations.
I think "lib.optionals" is seen by the search as one word if you search for "optionals" the levenstein distance to "optional" is much closer than to "lib.optionals". We need to change the default search indexing and introduce word splitting for the tokenizer at the (.) dot and also apply some weights for the last part of the string.
So lib.optionals is tokenized into [lib optionals] with a higher weight on "optionals".
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
See this example:
I am searching for "optionals", and there is
lib.optionals
that matches this search exactly, but it is not the first result or even on the first page.The text was updated successfully, but these errors were encountered: