Can't jump with custom identifiers:
import bar "awesome.com/pkg/foo"
bar.VariableOne // Can't jump from here
Or methods or properties of structs:
type Foo struct {
Name string
}
func bar() {
var foo Foo
println(foo.Name) // Can't jump from here
}
I think these two are quite common problems, yet I can't find explanations of why they are not working.
Any helps or explanations would be appreciated.
Can't jump with custom identifiers:
Or methods or properties of structs:
I think these two are quite common problems, yet I can't find explanations of why they are not working.
Any helps or explanations would be appreciated.