Submitter | Sean Farley |
---|---|
Date | Nov. 26, 2013, 1:37 a.m. |
Message ID | <6644dbf7724e54ec0fe8.1385429833@laptop.local> |
Download | mbox | patch |
Permalink | /patch/3148/ |
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()