douliang1900 2019-05-15 10:54
浏览 26
已采纳

如何使未声明的库自动完成?

How to make autocompletion as in goland? For VSC.

How do I need.

No good.

I have installed packages:

gocode
godef
golint
go-find-references
go-outline
goreturns
gorename
gopkgs
go-symbols

And configured settings.json:

{
    "go.toolsGopath": "/home/user/go",
    "go.gopath": "/home/user/go",
    "go.goroot": "/snap/go/3739",
    "go.buildOnSave": true,
    "go.lintOnSave": true,
    "go.vetOnSave": true,
    "go.buildFlags": [],
    "go.lintFlags": [],
    "go.vetFlags": [],
    "go.useCodeSnippetsOnFunctionSuggest": false,
    "go.formatOnSave": false,
    "go.formatTool": "goreturns"
}
  • 写回答

1条回答 默认 最新

  • dongzhangji4824 2019-05-15 12:56
    关注

    Within VS Code go to the extensions tab and search for "Go". There will be one listed created by Microsoft which provides IntelliSense. Install this extension and restart VS Code, you should have the functionality you are looking for.

    Note: you will need to be in a .go file for the IntelliSense to kick in.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?