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
company-minimum-prefix-length isn't taken into account when backspacing #1702
Comments
Company without lsp-mode works well. |
Adding company-lsp fixed the issue but it is no longer supported. Any fix without using company-lsp? |
What's your |
@kiennq FYI it reproduces with lsp-start-plain.el |
Does it only happen with csharp language server? |
disregard that, I though that I am in another issue. |
@kiennq So far I see this problem only in csharp. |
I found out the problem, |
Same with https://github.com/merrickluo/lsp-tailwindcss/ |
Some thing like this might help (advice-add #'lsp-completion--looking-back-trigger-characterp
:filter-args
(lambda (r) (seq-remove (lambda (it) (equal it " ")) r))
'((name . --filter-spaces))) |
I see that happening in both Scala and Haskell and the workaround does not help. |
I think I'm hitting the same behaviour with company and lsp: Despite 'company-minimum-prefix-length' set to '3', completion happens even with 0 characters. |
I have
(setq company-minimum-prefix-length 1)
. The company starts after I type one letter, but keep triggering after I delete the letter (it is slow to complete with zero length prefix). Any fix for that?After typing one letter:


After deleting that letter:
The text was updated successfully, but these errors were encountered: