我是靠谱客的博主 追寻荔枝,最近开发中收集的这篇文章主要介绍VSCode golang 提示太慢,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

查看偏移值

go的自动补全靠的时gocode,我们可以gocode -debug查看偏移,自动补全正常时偏移小于1ms,设置为on时偏移有3秒

gocode -debug
  • 如果大于1秒 表示有问题

解决办法

https://github.com/nsf/gocode 中有说明

You should have a correctly installed Go compiler environment and
your personal workspace ($GOPATH). If you have no idea
what $GOPATH is, take a look here
(http://golang.org/doc/code.html). Please make sure that
your $GOPATH/bin is available in your $PATH. This is
important, because most editors assume that gocode binary is
available in one of the directories, specified by
your $PATH environment variable. Otherwise manually copy
the gocode binary from $GOPATH/bin to a location which is
part of your $PATH after getting it in step 2.
  • 及把 G O P A T H / b i n 中 的 g o c o d e . e x e 复 制 到 了 GOPATH/bin中的gocode.exe复制到了 GOPATH/bingocode.exeGOPATH中
cp -rf $GOPATH/bin/gocode.exe $GOPATH/gocode.exe

最后

以上就是追寻荔枝为你收集整理的VSCode golang 提示太慢的全部内容,希望文章能够帮你解决VSCode golang 提示太慢所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部