Hi, go 1.19 has introduced DocLinks. Go's DocLink is a feature of the Go programming language that allows you to create a link to a specific location in the documentation for a package, type, or function. These links are created using a special syntax in comments, and they can be rendered as hyperlinks in tools like the Go documentation website or the godoc command-line tool.
```go type Zstruct struct { Name string } // The [Zstruct] can be used for anything .... ``` Problem, the [Zstruct] in the comment is not refactored when Zstruct is refactored by gopls. Any idea why it is not the case ? Is this because g 1.19 is too recent or is it a more fundamental problem ? Thanks, Thomas -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/a9c43419-dc8c-4ff3-9df1-6d1606f02c9dn%40googlegroups.com.