zsh completion: fix error in qfinish completions from 88a82069be4a
authorAugie Fackler <durin42@gmail.com>
Sat, 31 Mar 2012 15:39:44 -0500
changeset 16330 a5a3af000e0d
parent 16329 b3fefbb95aad
child 16332 42e95631887d
zsh completion: fix error in qfinish completions from 88a82069be4a The actual flag is --applied, not --all.
contrib/zsh_completion
--- a/contrib/zsh_completion	Sat Mar 31 14:05:10 2012 -0500
+++ b/contrib/zsh_completion	Sat Mar 31 15:39:44 2012 -0500
@@ -882,7 +882,7 @@
 
 _hg_cmd_qfinish() {
   _arguments -s -w : $_hg_global_opts \
-  '(--all -a)'{-a,--all}'[finish all patches]' \
+  '(--applied -a)'{-a,--applied}'[finish all applied patches]' \
   '*:patch:_hg_qapplied'
 }