changeset 16330:a5a3af000e0d

zsh completion: fix error in qfinish completions from 88a82069be4a The actual flag is --applied, not --all.
author Augie Fackler <durin42@gmail.com>
date Sat, 31 Mar 2012 15:39:44 -0500
parents b3fefbb95aad
children 42e95631887d
files contrib/zsh_completion
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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'
 }