[PATCH 07 of 15 V5] bash_completion: use correct command for listing shelves

Sean Farley sean.michael.farley at gmail.com
Tue Nov 26 13:54:46 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 8b0995d7a74888b1d9f156f35d64a43833362ccd
# Parent  6ac5a548ae2320a044ab17b5459fc03e57bf3d4f
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