diff options
author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-03-18 21:21:43 +0000 |
---|---|---|
committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-03-21 16:12:10 +0000 |
commit | 67136df0bf5d4b75e10c37fb19d49c28e098f052 (patch) | |
tree | 91b5c149cd7cbd68ca91c20706032b2e90c98d55 /Completion/Unix/Command/_git | |
parent | cbc44bd64a39649b7c73123c6eb85559d8d26f6c (diff) | |
download | zsh-67136df0bf5d4b75e10c37fb19d49c28e098f052.tar.gz zsh-67136df0bf5d4b75e10c37fb19d49c28e098f052.tar.xz zsh-67136df0bf5d4b75e10c37fb19d49c28e098f052.zip |
38180: _git: Improve reflog completion.
Currently, only used by «git reflog delete <TAB>».
Diffstat (limited to 'Completion/Unix/Command/_git')
-rw-r--r-- | Completion/Unix/Command/_git | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 12410582a..9eeda5837 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -5474,10 +5474,10 @@ __git_reflog_entries () { local expl declare -a reflog_entries - reflog_entries=(${${${(f)"$(_call_program reflog-entries git reflog 2>/dev/null)"}#* }%%:*}) + reflog_entries=(${(f)"$(_call_program reflog-entries "git reflog -1000 --pretty='%gD:[%h] %gs'" 2>/dev/null)"}) __git_command_successful $pipestatus || return 1 - _wanted reflog-entries expl 'reflog entry' _multi_parts @ reflog_entries + _describe -Vx -t reflog-entries 'reflog entry' reflog_entries } (( $+functions[__git_ref_sort_keys] )) || |