summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/golang/README.md4
-rw-r--r--plugins/golang/golang.plugin.zsh4
2 files changed, 8 insertions, 0 deletions
diff --git a/plugins/golang/README.md b/plugins/golang/README.md
index 1dc9b080b..8bfe3ae3d 100644
--- a/plugins/golang/README.md
+++ b/plugins/golang/README.md
@@ -30,4 +30,8 @@ plugins=(... golang)
| gor | `go run` | Compiles and runs your code |
| got | `go test` | Runs tests |
| gota | `go test ./...` | Runs tests in all subdirectories |
+| goto | `go tool` | Prints all the available tools |
+| gotoc | `go tool compile` | Generates object file |
+| gotod | `go tool dist` | Utility to bootstrap, build and test go runtime |
+| gotofx | `go tool fix` | Fixes an application to use newer features |
| gov | `go vet` | Vet examines Go source code and reports suspicious constructs |
diff --git a/plugins/golang/golang.plugin.zsh b/plugins/golang/golang.plugin.zsh
index 05196acc0..3ef9da6aa 100644
--- a/plugins/golang/golang.plugin.zsh
+++ b/plugins/golang/golang.plugin.zsh
@@ -274,4 +274,8 @@ alias gops='cd $GOPATH/src'
alias gor='go run'
alias got='go test'
alias gota='go test ./...'
+alias goto='go tool'
+alias gotoc='go tool compile'
+alias gotod='go tool dist'
+alias gotofx='go tool fix'
alias gov='go vet'