英文:
Go: how to get autocomplete for any go file
问题
似乎Go语言有通过某个Go程序获取自动完成数据的功能。有没有示例可以提供?例如,我有一个名为test.go
的文件,其中有一行代码:10:12。这个位置(10:12)在某个函数名后面,比如"getn" - 我能否获取以"getn"开头的所有函数的列表。
也就是说,获取自动完成数据。
英文:
Seems go has autocomplete data gettable via some go program. any example how to? e.g. i have file test.go
and line:column 10:12. this pos (10:12) is after some func name, e.g. "getn" - can I get list of all funcs which begin with "getn".
ie, get autocomplete data.
答案1
得分: 0
感谢您的评论。答案是gocode,您可以在https://github.com/nsf/gocode 上找到它(其中包含了文档的压缩文件)。
英文:
Tks to comment. Answer is gocode https://github.com/nsf/gocode (it has document inside zip).
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论