# HG changeset patch # User Sean Farley # Date 1402032106 18000 # Node ID 28ecdf3fa1dbb874c0b6cb7bdc1ab73fd3a9b3f9 # Parent bc773e9505e373b2daf43e68aaafec1cde8871c1 bash_completion: add -l|--list support for shelve This was overlooked previously and found via 'hg shelve -p -l ' (to show the diff of the shelved commit). diff -r bc773e9505e3 -r 28ecdf3fa1db contrib/bash_completion --- a/contrib/bash_completion Sat May 31 21:21:06 2014 +0900 +++ b/contrib/bash_completion Fri Jun 06 00:21:46 2014 -0500 @@ -629,7 +629,7 @@ _hg_cmd_shelve() { - if [[ "$prev" = @(-d|--delete) ]]; then + if [[ "$prev" = @(-d|--delete|-l|--list) ]]; then _hg_shelves else _hg_status "mard"