You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.
Using the "go.useCodeSnippetsOnFunctionSuggestWithoutType" as true sometimes autocompletes without the names of parameters. I haven't been able to fully understand the rule, but it happens sometimes when there are multiple parameters of the same type.
A code snippet that reproduces this is
package main
type ScoreInputer interface {
ScoreInput(score, x []float64) []float64
}
func main(){
var s ScoreInputer
s.ScoreInput(, x)
}
When completing the ScoreInput, the score name is not filled in.
Using the "go.useCodeSnippetsOnFunctionSuggestWithoutType" as true sometimes autocompletes without the names of parameters. I haven't been able to fully understand the rule, but it happens sometimes when there are multiple parameters of the same type.
A code snippet that reproduces this is
When completing the
ScoreInput
, thescore
name is not filled in.Full settings:
The text was updated successfully, but these errors were encountered: