contrib/zsh_completion
changeset 1486 d7809d6e9db2
parent 1484 840808c57969
child 1544 b3184bea3eb3
--- a/contrib/zsh_completion
+++ b/contrib/zsh_completion
@@ -257,6 +257,7 @@ case $service in
 
     (clone)
         if (( CURRENT == 2 )); then
+            repos=( $(hg paths | sed -e 's/^.*= //') )
             _arguments \
             '(--no-update)-U[do not update the new working directory]' \
             '(-U)--no-update[do not update the new working directory]' \
@@ -265,6 +266,7 @@ case $service in
             '--pull[use pull protocol to copy metadata]' \
             '--remotecmd[specify hg command to run on the remote side]:remote hg:' \
             '*:local repo:_files -/'
+            _wanted source expl 'source repository' compadd -a repos
         elif (( CURRENT == 3 )); then
             _arguments '*:dest repo:_files -/'
         fi