Skip to content

Commit 0559767

Browse files
Bryan MacFarlaneBryan MacFarlane
authored andcommitted
updates
1 parent dda9e9b commit 0559767

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

devenv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# -----------------------------------------------------------
55
# Silver Aerogel, Courier New 15 pt, Opacity 85%, Blur 7%
66
# In Shell tab: (this is the key that took me forever to figure out --rcfile)
7-
# Run Command: /bin/bash --rcfile ~/devosx/devenv.sh
7+
# Run Command: /bin/bash --rcfile ~/dev-macos/devenv.sh
88

99
#SCRIPT_NAME=`basename $0`
1010
SCRIPT_DIR=`dirname ${BASH_SOURCE}`

scripts/installgotools.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ set -e
44

55
# https://github.com/Microsoft/vscode-go/wiki/Go-tools-that-the-Go-extension-depends-on
66

7-
echo "Installing gocode (auto completion) ..."
8-
go get -u github.com/mdempsky/gocode
7+
echo "Installing gopls (auto completion) module support ..."
8+
go get -u golang.org/x/tools/cmd/gopls
99

1010
echo "Installing gocode-gomod (auto completion) module support ..."
1111
go get -u github.com/stamblerre/gocode
@@ -43,8 +43,8 @@ go get -u github.com/derekparker/delve/cmd/dlv
4343
echo "Installing goreturns (formatting) ..."
4444
go get -u github.com/sqs/goreturns
4545

46-
echo "Installing go dep package manager ..."
47-
go get -u github.com/golang/dep/cmd/dep
46+
# echo "Installing go dep package manager ..."
47+
# go get -u github.com/golang/dep/cmd/dep
4848

49-
echo "Installing go vgo package manager ..."
50-
go get -u golang.org/x/vgo
49+
# echo "Installing go vgo package manager ..."
50+
# go get -u golang.org/x/vgo

0 commit comments

Comments
 (0)