-
-
Notifications
You must be signed in to change notification settings - Fork 902
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
lsp-imenu don't show method args #436
Comments
In hierarchical document symbol support of ccls, https://github.com/maskray/ccls/blob/master/src/messages/textDocument_documentSymbol.cc#L131 ds.name = def->Name(false); // foo
ds.detail = def->Name(true); // ns::foo but no arguments
|
@MaskRay , thank you for answer! |
@MaskRay I might be missing something but here it is what I see as a ccls output(no detail). Jdt ls response is at the bottom
|
With |
Assuming this to be fixed. @myrgy if you hit the same issue with some other server please file a bug in the server's repo. |
Hi all,
Previously I had similar issue #329, which were caused by imenu settings, but seems like imenu was changes and now I can't seem arguments.
In case of C++ it's possible to have a bunch of methods with different arguments. In that case imenu is useless because I can't use it for navigation.
Could you please help me to adjust this behaviour.
Thank you in advance!
(I use lsp + ccls)
@MaskRay , seems like imenu results depend from cursor position. Is it desired behavior or a bug?
(when cursor is on the method - then I have only one result in imenu)
The text was updated successfully, but these errors were encountered: