0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

feat(golang): add goge alias for go generate

This commit is contained in:
jiahua wang 2023-02-26 22:03:13 +08:00
parent 277f38212a
commit 6c1b5277b1
2 changed files with 2 additions and 0 deletions

View file

@ -38,3 +38,4 @@ plugins=(... golang)
| gov | `go vet` | Vet examines Go source code and reports suspicious constructs |
| gove | `go version` | Prints Go version |
| gow | `go work` | Work provides access to operations on workspaces |
| goge | `go generate` | Generate Go files by processing source |

View file

@ -35,3 +35,4 @@ alias gotofx='go tool fix'
alias gov='go vet'
alias gove='go version'
alias gow='go work'
alias goge='go generate'