diff options
| author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2015-03-19 06:49:42 +0000 |
|---|---|---|
| committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2015-03-19 06:51:32 +0000 |
| commit | e176eff554b592cd649a88cd7de23399755e43f4 (patch) | |
| tree | f8767a9593b32cd4eccd9504b9b17ade2cd002bc /Completion/Unix | |
| parent | unposted: update NEWS to reference aliasing changes. (diff) | |
| download | zsh-e176eff554b592cd649a88cd7de23399755e43f4.tar zsh-e176eff554b592cd649a88cd7de23399755e43f4.tar.gz zsh-e176eff554b592cd649a88cd7de23399755e43f4.tar.bz2 zsh-e176eff554b592cd649a88cd7de23399755e43f4.tar.lz zsh-e176eff554b592cd649a88cd7de23399755e43f4.tar.xz zsh-e176eff554b592cd649a88cd7de23399755e43f4.tar.zst zsh-e176eff554b592cd649a88cd7de23399755e43f4.zip | |
34739: git completion: Fix regression in ce80a92
This restores the message when completing a commit object name that
isn't one of the most recent 20 commits. e.g., 'git checkout deadbeef<TAB>'.
Diffstat (limited to 'Completion/Unix')
| -rw-r--r-- | Completion/Unix/Command/_git | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index e5639fab2..5524cb017 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -5637,7 +5637,7 @@ __git_commit_objects () { : ${(A)commits::=${(f)"$(_call_program commits git --no-pager log -20 --format='%h:%s')"}} __git_command_successful $pipestatus || return 1 - _describe -t commits 'commit object name' commits + _describe -t commits 'commit object name' commits || _guard '[[:xdigit:]](#c,40)' 'commit object name' } (( $+functions[__git_recent_commits] )) || |
