zoukankan      html  css  js  c++  java
  • vscode

     下载:https://code.visualstudio.com/Download

    安装:

    配置语言:crtl+shift+P   --------》》 输入“configure language”,然后回车 --------》》安装语言  --------》》安装汉语简体

    安装go插件:

    安装代码自动补全插件:

    安装跳转翻页的标签插件:

     版本管理插件:gitlens

     todo插件:

     code runner插件:

    VSCode 必须安装以下插件:

    首先你必须安装 Golang 插件,然后再给 Go 安装工具包。

    在 VS Code 中,使用快捷键:command+shift+P,然后键入:go:install/update tools,将所有 16 个插件都勾选上,然后点击 OK 即开始安装。

     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    
    Installing 16 tools at /Users/maiyang/develop/goworkspace//bin
      gocode
      gopkgs
      go-outline
      go-symbols
      guru
      gorename
      dlv
      godef
      godoc
      goreturns
      golint
      gotests
      gomodifytags
      impl
      fillstruct
      goplay
    
    Installing github.com/mdempsky/gocode SUCCEEDED
    Installing github.com/uudashr/gopkgs/cmd/gopkgs SUCCEEDED
    Installing github.com/ramya-rao-a/go-outline SUCCEEDED
    Installing github.com/acroca/go-symbols SUCCEEDED
    Installing golang.org/x/tools/cmd/guru SUCCEEDED
    Installing golang.org/x/tools/cmd/gorename SUCCEEDED
    Installing github.com/derekparker/delve/cmd/dlv SUCCEEDED
    Installing github.com/rogpeppe/godef SUCCEEDED
    Installing golang.org/x/tools/cmd/godoc SUCCEEDED
    Installing github.com/sqs/goreturns SUCCEEDED
    Installing github.com/golang/lint/golint SUCCEEDED
    Installing github.com/cweill/gotests/... SUCCEEDED
    Installing github.com/fatih/gomodifytags SUCCEEDED
    Installing github.com/josharian/impl SUCCEEDED
    Installing github.com/davidrjenni/reftools/cmd/fillstruct SUCCEEDED
    Installing github.com/haya14busa/goplay/cmd/goplay SUCCEEDED
    
    All tools successfully installed. You're ready to Go :).
    
    go get -u -v github.com/nsf/gocode
    go get -u -v github.com/rogpeppe/godef
    go get -u -v github.com/golang/lint/golint
    go get -u -v github.com/lukehoban/go-find-references
    go get -u -v github.com/lukehoban/go-outline
    go get -u -v sourcegraph.com/sqs/goreturns
    go get -u -v golang.org/x/tools/cmd/gorename
    go get -u -v github.com/tpng/gopkgs
    go get -u -v github.com/newhook/go-symbols

    修改默认配置的方法:

    在 Preferences -> Setting 然后输入 go,然后选择 setting.json,填入你想要修改的配置

    • 自动完成未导入的包。
    1
    
      "go.autocompleteUnimportedPackages": true,
    
    • VSCode 的一些插件需要配置代理,才能够正常安装。
    1
    
      "http.proxy": "192.168.0.100:1087",
    
    • 如果你遇到使用标准包可以出现代码提示,但是使用自己的包或者第三方库无法出现代码提示,你可以查看一下你的配置项。
    1
    
      "go.inferGopath": true,
    
    • 如果引用的包使用了 ( . “aa.com/text”) 那这个text包下的函数也无法跳转进去,这是为什么?

    修改 "go.docsTool" 为 gogetdoc,默认是 godoc

    1
    
      "go.docsTool": "gogetdoc",
    

    其他

    1. 当我们在使用 import 功能的时候,如果无法通过 lint 检查,则不会执行自动 import。
    2. 如果你需要自动 import 的前提是你必须把要导入的包的函数写完整。

    附带我的 settings.json

     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    
    {
      "go.goroot": "",
      "go.gopath": "",
      "go.inferGopath": true,
      "go.autocompleteUnimportedPackages": true,
      "go.gocodePackageLookupMode": "go",
      "go.gotoSymbol.includeImports": true,
      "go.useCodeSnippetsOnFunctionSuggest": true,
      "go.useCodeSnippetsOnFunctionSuggestWithoutType": true,
      "go.docsTool": "gogetdoc",
    }

    #####################

  • 相关阅读:
    BEC listen and translation exercise 44
    中译英12
    BEC listen and translation exercise 43
    中译英11
    BEC listen and translation exercise 42
    中译英10
    BEC listen and translation exercise 41
    中译英9
    BEC listen and translation exercise 40
    中译英8
  • 原文地址:https://www.cnblogs.com/igoodful/p/13358908.html
Copyright © 2011-2022 走看看