gitfast: fetch latest fixes from git-completion (#9390)

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
This commit is contained in:
Felipe Contreras
2020-10-27 04:14:39 -06:00
committed by GitHub
parent bad9ee0004
commit d055445625
2 changed files with 27 additions and 22 deletions

View File

@ -3585,7 +3585,6 @@ __git_func_wrap ()
# This is NOT a public function; use at your own risk.
__git_complete ()
{
test -n "$ZSH_VERSION" && return
local wrapper="__git_wrap${2}"
eval "$wrapper () { __git_func_wrap $2 ; }"
complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \
@ -3607,8 +3606,7 @@ if ! git --list-cmds=main >/dev/null 2>&1; then
{
case "$1" in
--list-cmds=*)
IFS=, read -r -a cmds <<< "${1##--list-cmds=}"
for x in ${cmds[@]}; do
while read -r -d ',' x; do
case "$x" in
nohelpers)
;;
@ -3620,7 +3618,7 @@ if ! git --list-cmds=main >/dev/null 2>&1; then
echo ${__git_cmds[$x]}
;;
esac
done
done <<< "${1##--list-cmds=},"
return
;;
esac