-
Couldn't load subscription status.
- Fork 274
Description
I've started getting these errors back from ccls in my lsp-log buffer (Emacs 26.1, lsp-mode 20190126.1601, ccls-20181225.853, company-lsp-20190126.1750) for my large project. I haven't been able to reproduce this in smaller sample codebases, but I've used a stripped-down Emacs init.el and can still reproduce it. I've definitely waited for the entire codebase to index. In fact this same problem happens if I enable initialBlacklist (".") to avoid indexing the entire project at once.
Nothing is completing, no symbols are resolved, etc. I've enabled logging with -v=1 and there are no errors or strange messages, the compile lines for my source are shown in the log and all look correct to me, and there is no problem finding the Clang resource directory for headers like stddef.h etc.
I'm not sure what this error code means or what to do next to debug further.
I get things like this in *lsp-log* in Emacs:
{
"jsonrpc": "2.0",
"id": 26,
"error": {
"code": -32600,
"message": "not indexed"
}
}
<<<< ccls:7496
{
"jsonrpc": "2.0",
"id": 27,
"error": {
"code": -32600,
"message": "not indexed"
}
}
<<<< ccls:7496
{
"jsonrpc": "2.0",
"id": 28,
"result": {
"signatures": [],
"activeSignature": 0,
"activeParameter": 0
}
}