We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The text was updated successfully, but these errors were encountered:
emacs-lsp/lsp-mode#436
diff --git a/src/messages/textDocument_document.cc b/src/messages/textDocument_document.cc index a1ce9494..60a4b50a 100644 --- a/src/messages/textDocument_document.cc +++ b/src/messages/textDocument_document.cc @@ -196,8 +196,8 @@ void MessageHandler::textDocument_documentSymbol(JsonReader &reader, auto *def = entity.anyDef(); if (!def) return; - ds->name = def->name(false); - ds->detail = def->detailed_name; + ds->name = // def->name(false); + ds->detail = def->detailed_name; for (auto &def : entity.def) if (def.file_id == file_id && !ignore(&def)) { kind = ds->kind = def.kind;
Sorry, something went wrong.
@myrgy The patch did the trick for me, thanks.
@shunlir , it worth to increase imenu-max-item-length
imenu-max-item-length
(setq imenu-max-item-length 256)
No branches or pull requests
The text was updated successfully, but these errors were encountered: