[PATCH 6 of 7] bash_completion: use correct command for listing shelves

Sean Farley sean.michael.farley at gmail.com
Thu Nov 21 16:56:10 CST 2013


# HG changeset patch
# User Sean Farley <sean.michael.farley at gmail.com>
# Date 1385064892 18000
#      Thu Nov 21 15:14:52 2013 -0500
# Node ID 228017c0ab35563e78a3d1e347e6ed2f409c7e78
# Parent  0eddd02ecdcc466e3f3496d3ed455925c0654e48
bash_completion: use correct command for listing shelves

Previously, _hg_shelves used the unshelve command to list current shelves. This
is actually the wrong command. The correct usage is 'hg shelve -l' so we use
that instead.

diff --git a/contrib/bash_completion b/contrib/bash_completion
--- a/contrib/bash_completion
+++ b/contrib/bash_completion
@@ -595,11 +595,11 @@
 }
 
 # shelve
 _hg_shelves()
 {
-    local shelves="$(_hg_cmd unshelve -l .)"
+    local shelves="$(_hg_cmd shelve -ql)"
     local IFS=$'\n'
     COMPREPLY=(${COMPREPLY[@]:-} $(compgen -W '$shelves' -- "$cur"))
 }
 
 _hg_cmd_shelve()


More information about the Mercurial-devel mailing list