Gocode
2015-10-23
项目主页:https://github.com/nsf/gocode
具体使用和安装就不细说了,说说出现的问题
main redeclared in this blockprevious declaration
在使用 Syntastic 的时候,出现的这个问题,具体问题可见:http://stackoverflow.com/questions/22160094/vim-go-syntastic-main-redeclared
解决办法是使 Syntastic 不再提示这个错误,在 Vim 配置文件中加入如下代码
let g:syntastic_quiet_messages = { "regex": "main redeclared" }