Caibin Chen
Caibin Chen
company-lsp doesn't work if you cannot run language server on the code. IMO there can be solution to this - create a temporary buffer for the source block and run...
How about falling back to insert-text, if available? The LSP client needs to tell the server whether snippet is supported on server initialization. After initialization, there is no API to...
Sorry for late response. For lsp-go: The go language server doesn't provide completion support. You can confirm it by `M-x lsp-capabilities`. For lsp-python: It's unclear what went wrong. It's likely...
Sorry I missed comment about emacs-lsp/lsp-go#6 With that patched I was able to trigger completion for Go. I managed to trigger the error `wrong-type-argument arrayp nil` once. The lsp client...
Sorry for late response. I'll disable client-side filtering for gopls as a quick fix. A better solution will be comparing the `filterText` with and without the prefix. The best solution...
@yyoncho I introduced trigger chars calculation because it doesn't work for Java when annotation is involved. The prefix will be `@Override` instead of `Override`. Flex matching is on its way....
@yyoncho If we are calculating prefix as `
I'm not sure if I fully understand your question. Are you trying to jump to the definition of a candidate without adding it to the file content? If that's the...
This is caused by #20. The reason why it is triggering self completion incorrectly is that company-lsp`thinks the prefix for `#include` statements does not contain `#`, while cquery treats `#`...
I should have updated this issue. The issue is now mitigated by #22. I kept this issue open because the root cause is lsp-mode/company-lsp and cquery has different view of...