-
Notifications
You must be signed in to change notification settings - Fork 408
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
textDocument/documentSymbol response only show the range of the name of method/class. #2948
Comments
It looks like JDT-LS is only returning what appears to be Lines 113 to 119 in a31867d
Part of the issue is we didn't migrate our non-hierarchical |
Hi Roland, thanks so much for your prompt reply, I really appreciate it. After specifying Specifically, in the
Since the issue has been resolved, please feel free to close this issue. Thanks again. |
Hi! I am writing a client in Python to communicate with the jdt ls. I noticed that when my client sent a request of textDocument/documentSymbol, like:
The server's response only show the range of the name of method/class, like:
I omitted some parts as it is too long. The ranges of method and class are all within one line. And the ranges actually exactly represent the range of the name of the method/class.
But from my understanding, the ranges should be the ranges of the whole method body and the whole class, right? Is there a way that I can make the server generate such full range?
The text was updated successfully, but these errors were encountered: