Is your feature request related to a problem? Please describe.
When using Find All References, I expect to find all references where a variable is used or assigned.
If I am using a named return parameters, then the final return is not included in the references.
x := func() (other string) {
defer func() {
fmt.Println("I got: " + other)
}()
other = "abc"
return "def"
}
xx := x()
fmt.Println(xx)
Searching the variable other in the code above will not give me the final def usage.

Describe the solution you'd like
Show me the return line in the References.
Is your feature request related to a problem? Please describe.
When using
Find All References, I expect to find all references where a variable is used or assigned.If I am using a named return parameters, then the final return is not included in the references.
Searching the variable

otherin the code above will not give me the finaldefusage.Describe the solution you'd like
Show me the return line in the References.