x/tools/gopls: For generic function completion, don't complete with Name[|]()
if type parameters can be inferred
#72758
Labels
FeatureRequest
Issues asking for a new feature that does not need a proposal.
gopls/completion
Issues related to auto-completion in gopls.
gopls
Issues related to the Go language server, gopls.
Tools
This label describes issues relating to any tools in the x/tools repository.
Milestone
gopls version
go env
What did you do?
auto complete a function where type params can likely be inferred (e.g.
slices.Clone
)What did you see happen?
it auto completes to
slices.Clone[|]()
What did you expect to see?
it auto complete to
slices.Clone(|)
since the type parameter information can almost always be inferred from the function argument(s).Editor and settings
n/a
Logs
n/a
The text was updated successfully, but these errors were encountered: