go mod 使用最新版本包
# 拉取最新的版本(优先择取 tag)
go get golang.org/x/text@latest
# 拉取 master 分支的最新 commit
go get golang.org/x/text@master
更新了mod依赖版本后, vscode的跳转功能并不能立即生效,需要重启下才能生效。
# 拉取最新的版本(优先择取 tag)
go get golang.org/x/text@latest
# 拉取 master 分支的最新 commit
go get golang.org/x/text@master
更新了mod依赖版本后, vscode的跳转功能并不能立即生效,需要重启下才能生效。