# HG changeset patch # User Sean Farley # Date 2014-06-06 05:21:46 # 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 --git a/contrib/bash_completion b/contrib/bash_completion --- a/contrib/bash_completion +++ b/contrib/bash_completion @@ -629,7 +629,7 @@ complete -o bashdefault -o default -o no _hg_cmd_shelve() { - if [[ "$prev" = @(-d|--delete) ]]; then + if [[ "$prev" = @(-d|--delete|-l|--list) ]]; then _hg_shelves else _hg_status "mard"