Submitter | Sean Farley |
---|---|
Date | Nov. 22, 2013, 8:26 p.m. |
Message ID | <8d20a60aa93cba1a3e33.1385151967@laptop.local> |
Download | mbox | patch |
Permalink | /patch/3098/ |
State | Superseded |
Commit | 56108ee1edb620e5d61b89900529e8aa5cea447d |
Headers | show |
Comments
Patch
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()