英文:
GoLand IDE cannot recognize Go files, intellisense/code completion not working
问题
我正在尝试编写一些基本的Go文件,但是当我只使用Go文件时,没有代码补全/智能感知。
另外,当我尝试编写JS代码时,它运行得很好。
有什么想法吗?
英文:
I'm trying to write some basic Go file and I don't have any code completion / intellisense when working only with go files.
Otherwise, when trying to write JS code for example it works great:
Any thoughts?
答案1
得分: 1
你需要在你的IDE中设置一些设置,比如GOPATH和GOROOT。这是一个IDE设置的安装过程截图。
英文:
You have to set some settings like GOPATH and GOROOT in your IDE.
This is a setup process screenshot of an IDE setting.
答案2
得分: 0
导航到“首选项 | 编辑器 | 文件类型”,找到“文本”或“根据上下文自动检测的文件类型”,然后从文件名模式列表中删除main.go
。
英文:
Navigate to Preferences | Editor | File Types, find Text or File type auto-detected by context and remove main.go
from the file name patterns list.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论