Update git-completion for new 'remote rm' option
Signed-off-by: Dan McGee <dpmcgee@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
233808db15
commit
a3b811a491
@ -970,18 +970,18 @@ _git_remote ()
|
|||||||
while [ $c -lt $COMP_CWORD ]; do
|
while [ $c -lt $COMP_CWORD ]; do
|
||||||
i="${COMP_WORDS[c]}"
|
i="${COMP_WORDS[c]}"
|
||||||
case "$i" in
|
case "$i" in
|
||||||
add|show|prune|update) command="$i"; break ;;
|
add|rm|show|prune|update) command="$i"; break ;;
|
||||||
esac
|
esac
|
||||||
c=$((++c))
|
c=$((++c))
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ $c -eq $COMP_CWORD -a -z "$command" ]; then
|
if [ $c -eq $COMP_CWORD -a -z "$command" ]; then
|
||||||
__gitcomp "add show prune update"
|
__gitcomp "add rm show prune update"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case "$command" in
|
case "$command" in
|
||||||
show|prune)
|
rm|show|prune)
|
||||||
__gitcomp "$(__git_remotes)"
|
__gitcomp "$(__git_remotes)"
|
||||||
;;
|
;;
|
||||||
update)
|
update)
|
||||||
|
Loading…
Reference in New Issue
Block a user