1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-11 00:10:08 +00:00

fix(git-extras): type properly __gitex_command_successful calls

Closes #11430
This commit is contained in:
Carlo Sala 2023-01-06 00:14:33 +01:00
parent 280c99dae6
commit 71ca38652b
No known key found for this signature in database
GPG key ID: DA6FB450C1A4FE9A

View file

@ -51,7 +51,7 @@ __gitex_remote_names() {
local expl
declare -a remote_names
remote_names=(${(f)"$(_call_program remotes git remote 2>/dev/null)"})
__git_command_successful || return
__gitex_command_successful || return
_wanted remote-names expl remote-name compadd $* - $remote_names
}
@ -59,7 +59,7 @@ __gitex_tag_names() {
local expl
declare -a tag_names
tag_names=(${${(f)"$(_call_program tags git for-each-ref --format='"%(refname)"' refs/tags 2>/dev/null)"}#refs/tags/})
__git_command_successful || return
__gitex_command_successful || return
_wanted tag-names expl tag-name compadd $* - $tag_names
}
@ -68,7 +68,7 @@ __gitex_branch_names() {
local expl
declare -a branch_names
branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads 2>/dev/null)"}#refs/heads/})
__git_command_successful || return
__gitex_command_successful || return
_wanted branch-names expl branch-name compadd $* - $branch_names
}
@ -76,7 +76,7 @@ __gitex_specific_branch_names() {
local expl
declare -a branch_names
branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads/"$1" 2>/dev/null)"}#refs/heads/$1/})
__git_command_successful || return
__gitex_command_successful || return
_wanted branch-names expl branch-name compadd - $branch_names
}
@ -100,7 +100,7 @@ __gitex_submodule_names() {
local expl
declare -a submodule_names
submodule_names=(${(f)"$(_call_program branchrefs git submodule status | awk '{print $2}')"}) # '
__git_command_successful || return
__gitex_command_successful || return
_wanted submodule-names expl submodule-name compadd $* - $submodule_names
}
@ -109,7 +109,7 @@ __gitex_author_names() {
local expl
declare -a author_names
author_names=(${(f)"$(_call_program branchrefs git log --format='%aN' | sort -u)"})
__git_command_successful || return
__gitex_command_successful || return
_wanted author-names expl author-name compadd $* - $author_names
}