Submitter | Bryan O'Sullivan |
---|---|
Date | March 14, 2013, 9:42 p.m. |
Message ID | <3e6874c851bebe2ca4b3.1363297325@australite.local> |
Download | mbox | patch |
Permalink | /patch/1128/ |
State | Accepted |
Commit | 69e4787b6867f958653d9556f9b98208fdda7570 |
Headers | show |
Comments
Patch
diff --git a/contrib/bash_completion b/contrib/bash_completion --- a/contrib/bash_completion +++ b/contrib/bash_completion @@ -82,7 +82,7 @@ shopt -s extglob _hg_status() { - local files="$(_hg_cmd status -n$1 .)" + local files="$(_hg_cmd status -n$1 "glob:$cur**")" local IFS=$'\n' compopt -o filenames 2>/dev/null COMPREPLY=(${COMPREPLY[@]:-} $(compgen -W '$files' -- "$cur"))