-
Notifications
You must be signed in to change notification settings - Fork 26
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
Completion can not work any more when update company-lsp #92
Comments
Hi, what's the language server you are using? Is it ccls, cquery, or clangd? Can you try |
@tigersoldier I use clangd as c and c++ server. I try |
@tigersoldier Type |
Per spec filterText should be used for filtering when the server provides it. If it's not provided, label should be used. Some language server such as clangd adds some prefix to labels, such as empty spaces. They don't work well with prefix-based filter since the additional prefix will never match the completion prefix. Should fix #92 and may also help #79.
Per spec filterText should be used for filtering when the server provides it. If it's not provided, label should be used. Some language server such as clangd adds some prefix to labels, such as empty spaces. They don't work well with prefix-based filter since the additional prefix will never match the completion prefix. Should fix #92 and may also help #79.
Per spec filterText should be used for filtering when the server provides it. If it's not provided, label should be used. Some language server such as clangd adds some prefix to labels, such as empty spaces. They don't work well with prefix-based filter since the additional prefix will never match the completion prefix. Should fix #92 and may also help #79.
@tigersoldier I test it right now and it works! thank you for so quick fix. |
Hi, When I update company-lsp new commit "218898c", LSP based on clang can not work on my laptop.I write some demo C and C++ code and it is likely that company-lsp can not be called by LSP, it works using company-clang.And I go back to previous company-lsp commit, emacs can show correctly completion using company-lsp.
I don't know where is going wrong.
The text was updated successfully, but these errors were encountered: