Zsh: Completion for PR numbers for gh commands
This commit is contained in:
parent
b90c0a0a09
commit
c477a23465
29
src/_gh
29
src/_gh
|
@ -367,14 +367,21 @@ function _gh_pr {
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function _pr_helper {
|
||||||
|
local options=$(gh pr list | awk -F '\t' '{print $1 "\\:" "\"" $2 " (" $3 ")" "\""}' | tr '\n' ' ')
|
||||||
|
echo $options
|
||||||
|
}
|
||||||
|
|
||||||
function _gh_pr_checkout {
|
function _gh_pr_checkout {
|
||||||
_arguments \
|
_arguments -C \
|
||||||
|
"1:PR:(($(_pr_helper)))" \
|
||||||
'--help[Show help for command]' \
|
'--help[Show help for command]' \
|
||||||
'(-R --repo)'{-R,--repo}'[Select another repository using the `OWNER/REPO` format]:'
|
'(-R --repo)'{-R,--repo}'[Select another repository using the `OWNER/REPO` format]:'
|
||||||
}
|
}
|
||||||
|
|
||||||
function _gh_pr_close {
|
function _gh_pr_close {
|
||||||
_arguments \
|
_arguments -C \
|
||||||
|
"1:PR:(($(_pr_helper)))" \
|
||||||
'--help[Show help for command]' \
|
'--help[Show help for command]' \
|
||||||
'(-R --repo)'{-R,--repo}'[Select another repository using the `OWNER/REPO` format]:'
|
'(-R --repo)'{-R,--repo}'[Select another repository using the `OWNER/REPO` format]:'
|
||||||
}
|
}
|
||||||
|
@ -397,7 +404,8 @@ function _gh_pr_create {
|
||||||
}
|
}
|
||||||
|
|
||||||
function _gh_pr_diff {
|
function _gh_pr_diff {
|
||||||
_arguments \
|
_arguments -C \
|
||||||
|
"1:PR:(($(_pr_helper)))" \
|
||||||
'(-c --color)'{-c,--color}'[Whether or not to output color: {always|never|auto}]:' \
|
'(-c --color)'{-c,--color}'[Whether or not to output color: {always|never|auto}]:' \
|
||||||
'--help[Show help for command]' \
|
'--help[Show help for command]' \
|
||||||
'(-R --repo)'{-R,--repo}'[Select another repository using the `OWNER/REPO` format]:'
|
'(-R --repo)'{-R,--repo}'[Select another repository using the `OWNER/REPO` format]:'
|
||||||
|
@ -416,7 +424,8 @@ function _gh_pr_list {
|
||||||
}
|
}
|
||||||
|
|
||||||
function _gh_pr_merge {
|
function _gh_pr_merge {
|
||||||
_arguments \
|
_arguments -C \
|
||||||
|
"1:PR:(($(_pr_helper)))" \
|
||||||
'(-d --delete-branch)'{-d,--delete-branch}'[Delete the local and remote branch after merge]' \
|
'(-d --delete-branch)'{-d,--delete-branch}'[Delete the local and remote branch after merge]' \
|
||||||
'(-m --merge)'{-m,--merge}'[Merge the commits with the base branch]' \
|
'(-m --merge)'{-m,--merge}'[Merge the commits with the base branch]' \
|
||||||
'(-r --rebase)'{-r,--rebase}'[Rebase the commits onto the base branch]' \
|
'(-r --rebase)'{-r,--rebase}'[Rebase the commits onto the base branch]' \
|
||||||
|
@ -426,19 +435,22 @@ function _gh_pr_merge {
|
||||||
}
|
}
|
||||||
|
|
||||||
function _gh_pr_ready {
|
function _gh_pr_ready {
|
||||||
_arguments \
|
_arguments -C \
|
||||||
|
"1:PR:(($(_pr_helper)))" \
|
||||||
'--help[Show help for command]' \
|
'--help[Show help for command]' \
|
||||||
'(-R --repo)'{-R,--repo}'[Select another repository using the `OWNER/REPO` format]:'
|
'(-R --repo)'{-R,--repo}'[Select another repository using the `OWNER/REPO` format]:'
|
||||||
}
|
}
|
||||||
|
|
||||||
function _gh_pr_reopen {
|
function _gh_pr_reopen {
|
||||||
_arguments \
|
_arguments -C \
|
||||||
|
"1:PR:(($(_pr_helper)))" \
|
||||||
'--help[Show help for command]' \
|
'--help[Show help for command]' \
|
||||||
'(-R --repo)'{-R,--repo}'[Select another repository using the `OWNER/REPO` format]:'
|
'(-R --repo)'{-R,--repo}'[Select another repository using the `OWNER/REPO` format]:'
|
||||||
}
|
}
|
||||||
|
|
||||||
function _gh_pr_review {
|
function _gh_pr_review {
|
||||||
_arguments \
|
_arguments -C \
|
||||||
|
"1:PR:(($(_pr_helper)))" \
|
||||||
'(-a --approve)'{-a,--approve}'[Approve pull request]' \
|
'(-a --approve)'{-a,--approve}'[Approve pull request]' \
|
||||||
'(-b --body)'{-b,--body}'[Specify the body of a review]:' \
|
'(-b --body)'{-b,--body}'[Specify the body of a review]:' \
|
||||||
'(-c --comment)'{-c,--comment}'[Comment on a pull request]' \
|
'(-c --comment)'{-c,--comment}'[Comment on a pull request]' \
|
||||||
|
@ -454,7 +466,8 @@ function _gh_pr_status {
|
||||||
}
|
}
|
||||||
|
|
||||||
function _gh_pr_view {
|
function _gh_pr_view {
|
||||||
_arguments \
|
_arguments -C \
|
||||||
|
"1:PR:(($(_pr_helper)))" \
|
||||||
'(-w --web)'{-w,--web}'[Open a pull request in the browser]' \
|
'(-w --web)'{-w,--web}'[Open a pull request in the browser]' \
|
||||||
'--help[Show help for command]' \
|
'--help[Show help for command]' \
|
||||||
'(-R --repo)'{-R,--repo}'[Select another repository using the `OWNER/REPO` format]:'
|
'(-R --repo)'{-R,--repo}'[Select another repository using the `OWNER/REPO` format]:'
|
||||||
|
|
Loading…
Reference in New Issue