nerdneilsfield
10/4/2018 - 7:17 PM

vscode-go-tools

vscode-go-tools

cd $env:gopath

mkdir -p src/golang.org/x
cd src/golang.org/x
git clone https://github.com/golang/tools
git clone https://github.com/golang/crypto
git clone https//github.com/golang/time
git clone https://github.com/golang/image
git clone https://github.com/golang/text
#git clone https://github.com/golang/exp
#git clone https://github.com/golang/mobile
git clone https://github.com/golang/sys
git clone https://github.com/golang/net
git clone https://github.com/golang/lint

#go install golang.org/x/tools/cmd/...
#go install golang.org/x/lint/golint
#go install golang.org/x/net/imports

go install golang.org/x/...

go get -u github.com/golang/dep/cmd/dep

go get -u github.com/labstack/echo/...
go get -u github.com/gin-gonic/gin

go get -u github.com/fatih/gomodifytags
go get -u github.com/josharian/impl
go get -u github.com/davidrjenni/reftools/cmd/fillstruct
go get -u github.com/haya14busa/goplay/cmd/goplay

go get github.com/jroimartin/gocui

go get -u github.com/cweill/gotests/...
go get -u github.com/mdempsky/gocode
go get -u github.com/uudashr/gopkgs/cmd/gopkgs
go get -u github.com/ramya-rao-a/go-outline
go get -u github.com/acroca/go-symbols
go get -u github.com/derekparker/delve/cmd/dlv
go get -u github.com/stamblerre/gocode
go get -u github.com/rogpeppe/godef
go get -u github.com/ianthehat/godef
go get -u github.com/ianthehat/godoc
#!/bin/bash

cd $GOPATH

mkdir -p src/golang.org/x
cd src/golang.org/x
git clone https://github.com/golang/tools
git clone https://github.com/golang/crypto
#git clone https//github.com/golang/time
git clone https://github.com/golang/image
git clone https://github.com/golang/text
#git clone https://github.com/golang/exp
#git clone https://github.com/golang/mobile
git clone https://github.com/golang/sys
git clone https://github.com/golang/net
git clone https://github.com/golang/lint
git clone https://github.com/golang/sync

#go install golang.org/x/tools/cmd/...
#go install golang.org/x/lint/golint
#go install golang.org/x/net/imports

go install golang.org/x/...

go get -u github.com/golang/dep/cmd/dep

go get -u github.com/labstack/echo/...
go get -u github.com/gin-gonic/gin

go get -u github.com/fatih/gomodifytags
go get -u github.com/josharian/impl
go get -u github.com/davidrjenni/reftools/cmd/fillstruct
go get -u github.com/haya14busa/goplay/cmd/goplay

go get github.com/jroimartin/gocui

go get -u github.com/cweill/gotests/...
go get -u github.com/mdempsky/gocode
go get -u github.com/uudashr/gopkgs/cmd/gopkgs
go get -u github.com/ramya-rao-a/go-outline
go get -u github.com/acroca/go-symbols
go get -u github.com/derekparker/delve/cmd/dlv
go get -u github.com/stamblerre/gocode
go get -u github.com/rogpeppe/godef
go get -u github.com/ianthehat/godef
go get -u github.com/ianthehat/godoc