Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
29ec5260
Unverified
Commit
29ec5260
authored
Sep 16, 2021
by
Muhammad Zahalqa
Committed by
GitHub
Sep 16, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(golang): add `gota` to test current directory recursively (#8974)
parent
93b557e2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
README.md
plugins/golang/README.md
+1
-0
golang.plugin.zsh
plugins/golang/golang.plugin.zsh
+1
-0
No files found.
plugins/golang/README.md
View file @
29ec5260
...
@@ -27,4 +27,5 @@ plugins=(... golang)
...
@@ -27,4 +27,5 @@ plugins=(... golang)
| gops |
`cd $GOPATH/src`
| Takes you to $GOPATH/src |
| gops |
`cd $GOPATH/src`
| Takes you to $GOPATH/src |
| gor |
`go run`
| Compiles and runs your code |
| gor |
`go run`
| Compiles and runs your code |
| got |
`go test`
| Runs tests |
| got |
`go test`
| Runs tests |
| gota |
`go test ./...`
| Runs tests in all subdirectories |
| gov |
`go vet`
| Vet examines Go source code and reports suspicious constructs |
| gov |
`go vet`
| Vet examines Go source code and reports suspicious constructs |
plugins/golang/golang.plugin.zsh
View file @
29ec5260
...
@@ -271,4 +271,5 @@ alias gopb='cd $GOPATH/bin'
...
@@ -271,4 +271,5 @@ alias gopb='cd $GOPATH/bin'
alias
gops
=
'cd $GOPATH/src'
alias
gops
=
'cd $GOPATH/src'
alias
gor
=
'go run'
alias
gor
=
'go run'
alias
got
=
'go test'
alias
got
=
'go test'
alias
gota
=
'go test ./...'
alias
gov
=
'go vet'
alias
gov
=
'go vet'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment