Closed
Description
What version of Go are you using (go version
)?
$ go version go version devel +2b50ab2aee Tue Mar 2 06:38:07 2021 +0000 linux/amd64 $ go list -m golang.org/x/tools golang.org/x/tools v0.1.1-0.20210227203037-f5a4005dda57 $ go list -m golang.org/x/tools/gopls golang.org/x/tools/gopls v0.0.0-20210227203037-f5a4005dda57
Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (go env
)?
go env
Output
$ go env GO111MODULE="" GOARCH="amd64" GOBIN="" GOCACHE="/home/myitcv/.cache/go-build" GOENV="/home/myitcv/.config/go/env" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOINSECURE="" GOMODCACHE="/home/myitcv/gostuff/pkg/mod" GONOPROXY="" GONOSUMDB="" GOOS="linux" GOPATH="/home/myitcv/gostuff" GOPRIVATE="" GOPROXY="https://proxy.golang.org,direct" GOROOT="/home/myitcv/gos" GOSUMDB="sum.golang.org" GOTMPDIR="" GOTOOLDIR="/home/myitcv/gos/pkg/tool/linux_amd64" GOVCS="" GOVERSION="devel +2b50ab2aee Tue Mar 2 06:38:07 2021 +0000" GCCGO="gccgo" AR="ar" CC="gcc" CXX="g++" CGO_ENABLED="1" GOMOD="/home/myitcv/.vim/plugged/govim/go.mod" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build1538164450=/tmp/go-build -gno-record-gcc-switches"
What did you do?
Start by adding github.com/kr/pretty
to your module cache:
cd $(mktemp -d)
go mod init blah.com
go get github.com/kr/pretty
Then separately create the following setup:
-- go.mod --
module blah.com
go 1.16
-- main.go --
package main
func main() {
}
Edit main.go
as follows:
package main
func main() {
pretty.Spr_
}
and trigger completion with the cursor in the position shown by _
.
What did you expect to see?
Unimported completion results that include github.com/kr/pretty
.
What did you see instead?
No results. I only see results if I trigger a second completion request.
Logs:
cc @stamblerre
FYI @leitzler