diff contrib/zsh_completion @ 3597:0d253ec988a6

zsh: complete unknown commands normally
author Brendan Cully <brendan@kublai.com>
date Tue, 31 Oct 2006 12:05:47 -0800
parents c8494fcc9d39
children 27121416f9a8
line wrap: on
line diff
--- a/contrib/zsh_completion	Tue Oct 31 13:22:05 2006 +0100
+++ b/contrib/zsh_completion	Tue Oct 31 12:05:47 2006 -0800
@@ -80,7 +80,10 @@
   then
     curcontext="${curcontext%:*:*}:hg-${cmd}:"
     _hg_cmd_${cmd}
-    return
+  else
+    # complete unknown commands normally
+    _arguments -s -w : $_hg_global_opts \
+      '*:files:_files -W $(_hg_cmd root)'
   fi
 }