-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
x/tools/gopls: better struct field docs messages on hover #73016
Comments
This information is also available via a "find all references" query on |
The primary reason I opened this issue is that the information provided about the safety of using this field is now misleading. |
What about
|
Thank you for your suggestion. Do you think extending the first-line message would make it excessively long? Perhaps a way to indicate that this structure is not ‘by value’ could be implemented.
to emphasize the importance of caution when using this field. There is another related issue. _ = v.OtherStruct and the cursor hovers over
This message does not make sense if the embedded structure or field is named the same as the type name (until the full message is opened).
So it is also may be solved with additional mention that it is embedded, for example:
|
I agreed with your proposal but there could be hard to determine how many depth should we search the ref backward. Like the following sample, what should we show as doc? type A struct {
V int
}
type B struct {A}
type C struct {*B}
// Then we do something
_ = C{}
_ = C.V <- cursor On the other hand, I think there could be some perf issue to determine whether a ref's parent would be But if we only focus the first depth of embed, this should be a good enhancement. |
I am uncertain about the current state of doc rendering. If “gopls” is already aware that The final line of the document could potentially display the complete chain of embeddings, as suggested. I believe this is a necessary feature. The question remains about the first line of the document. In my opinion, there are two possible edge solutions, with everything in between being reasonable. One option is to display only the information that the field is an embedded field, rather than simply indicating that it is a field (owned or not). This would provide a concise representation. The other option is to display the complete chain of embeddings. Of course, there may be limitations on the depth level of the embeddings, such as a maximum depth of 1, 2, or other predefined values. However, I believe limiting the depth to the server side is not a good idea. Clients can shorten the embedding chain if necessary. I am currently leaning towards the second option, which would display the complete chain of embeddings as follows:
However, it may be acceptable to simplify the representation to the following:
|
Apologies, I think I misunderstood earlier. Augmenting the hover information with the embedded representation would certainly be helpful. Please feel free to pick this up if you have any interest, I've added a help wanted label |
Change https://go.dev/cl/662275 mentions this issue: |
gopls version
Build info
golang.org/x/tools/gopls v0.18.1
golang.org/x/tools/gopls@v0.18.1 h1:2xJBNzdImS5u/kV/ZzqDLSvlBSeZX+pWY9uKVP7Pask=
github.com/BurntSushi/toml@v1.4.1-0.20240526193622-a339e1f7089c h1:pxW6RcqyfI9/kWtOwnv/G+AzdKuy2ZrqINhenH4HyNs=
github.com/google/go-cmp@v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
golang.org/x/exp/typeparams@v0.0.0-20241210194714-1829a127f884 h1:1xaZTydL5Gsg78QharTwKfA9FY9CZ1VQj6D/AZEvHR0=
golang.org/x/mod@v0.23.0 h1:Zb7khfcRGKk+kqfxFaP5tZqCnDZMjC5VtUBs87Hr6QM=
golang.org/x/sync@v0.11.0 h1:GGz8+XQP4FvTTrjZPzNKTMFtSXH80RAzG+5ghFPgK9w=
golang.org/x/telemetry@v0.0.0-20241220003058-cc96b6e0d3d9 h1:L2k9GUV2TpQKVRGMjN94qfUMgUwOFimSQ6gipyJIjKw=
golang.org/x/text@v0.22.0 h1:bofq7m3/HAFvbF51jz3Q9wLg3jkvSPuiZu/pD1XwgtM=
golang.org/x/tools@v0.30.1-0.20250221230316-5055f70f240c h1:Ja/5gV5a9Vvho3p2NC/T2TtxhHjrWS/2DvCKMvA0a+Y=
golang.org/x/vuln@v1.1.3 h1:NPGnvPOTgnjBc9HTaUx+nj+EaUYxl5SJOWqaDYGaFYw=
honnef.co/go/tools@v0.5.1 h1:4bH5o3b5ZULQ4UrBmP+63W9r7qIkqJClEA9ko5YKx+I=
mvdan.cc/gofumpt@v0.7.0 h1:bg91ttqXmi9y2xawvkuMXyvAA/1ZGJqYAEGjXuP0JXU=
mvdan.cc/xurls/v2@v2.5.0 h1:lyBNOm8Wo71UknhUs4QTFUNNMyxy2JEIaKKo0RWOh+8=
go: go1.24.1
go env
What did you do?
Suggest I have such code with struct that embeds other structure as pointer.
I put my point (cursor) on v.Some, exactly on Some word to know its type.
What did you see happen?
In minibuffer, and with doc buffer "shift + k" I have following:
I found this message a little bit confusing, when I try to understand if field may cause nil pointer dereference panic.
What did you expect to see?
I think it will be better to show this declaration fully as:
It shows that it is from an embedded structure which is a pointer.
Otherwise it may show an embedded structure as a provider like this:
Editor and settings
Default, stock Doom Emacs with Eglot and gopls.
:language (go +lsp)
Logs
No response
The text was updated successfully, but these errors were encountered: