-
-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ignores candidates that do not match prefix #38
Comments
That's because of the search engine. If something pops out like the word bar, then it can be powered by some semantic engine in the backend (like language server protocol). |
I'm a
On a Elisp file, except with |
What does it print in |
Never mind.
Of course, this change is not correct for all BTW, the candidate I was using as an example is
Thank you for |
By default, company-fuzzy will try to get all candidates (as many as possible), so the scoring engine can filter.
I don't remember the details, but if I recall correctly, “most” backends need a prefix to get the list of candidates.
Oops, did I misread it? Sorry about that... 😓
I'm glad you like it! ❤️ |
On this case, if the prefix is just the empty string, all candidates are returned, otherwise the If I understand correctly, that I must admit that I know nothing about the requirements of |
No worries. All backends are different, so there is no right or wrong answer. Here is how company-fuzzy/company-fuzzy.el Lines 500 to 576 in cb0628a
Hope the information helps! ;) |
Thanks. This is a case of conflicting responsibilities: We can convince some
|
I'm using
flx-rs
as the sorting backend.For some reason, only candidates that have a prefix matching the entered string are shown. This is with the etags backend.
This means that if I have
foo-bar
in TAGS and writefba
,foo-bar
is suggested, but not when I writebar
.My config so far is:
Any suggestion?
The text was updated successfully, but these errors were encountered: