x/tools/gopls: fully qualify symbol names for Symbol #38273
Labels
FeatureRequest
Issues asking for a new feature that does not need a proposal.
FrozenDueToAge
gopls
Issues related to the Go language server, gopls.
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Tools
This label describes issues relating to any tools in the x/tools repository.
Milestone
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
This request complements/is complemented by #37237.
Currently the workspace symbol method performs a case-insensitive search on a symbol by its name only, rather than the fully qualified path. Furthermore it returns only this name in the
Name
field of aSymbolInformation
struct.Consider the following cut-down example:
A symbol search for
"na"
returns:What did you expect to see?
github.com/myitcv/playground.name
andgithub.com/myitcv/playground/p.Name
/
and.
, e.g."p.na"
would only return results in a package which fuzzy matches"p"
and where the symbol within those packages fuzzy matches"na"
SymbolInformation.Name
fieldA further question is how the type of a symbol can be returned as part of a match; whilst this should likely not play a part in the match, it is relevant in the presentation of results.
What did you see instead?
Per above
cc @stamblerre @findleyr
FYI @leitzler
The text was updated successfully, but these errors were encountered: