From 5b4f06038990ce2f242ae6d6a4de047e54723d2c Mon Sep 17 00:00:00 2001 From: Simon Crosland Date: Mon, 28 Feb 2022 20:27:47 +0000 Subject: [PATCH] vscode: add extra go tools mac/install/golang.sh: Add in gopkgs and go-outline which the vscode plugin for go uses. There is work underway to replace some of these with gopls, see https://github.com/golang/vscode-go/issues/1652. --- mac/install/golang.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mac/install/golang.sh b/mac/install/golang.sh index 1193131..da22b97 100755 --- a/mac/install/golang.sh +++ b/mac/install/golang.sh @@ -8,6 +8,10 @@ TOOLS=() TOOLS+=( golang.org/x/tools/gopls@latest ) TOOLS+=( github.com/fatih/motion@latest ) TOOLS+=( github.com/jstemmer/gotags@master ) +# for vscode until replaced by gopls +TOOLS+=( github.com/ramya-rao-a/go-outline@latest ) +# for vscode until replace by gopls +TOOLS+=( github.com/uudashr/gopkgs/v2/cmd/gopkgs@latest ) TOOLS+=( honnef.co/go/tools/cmd/keyify@master ) TOOLS+=( honnef.co/go/tools/cmd/staticcheck@latest )