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
I have noticed that if I have something like this:
fmt.Println("Hello")
And I move point to the end of Hello, like this (where <> is point):
fmt.Println("Hello<>")
And get a completion of , World!"), then accept it, I end up with:
fmt.Println("Hello, World!")")
With the trailing ") still there. I feel like this changed recently and it used to be that I would end up with just fmt.Println("Hello, World!") as expected.