diff options
| author | Daniel Hahler <git@thequod.de> | 2015-05-14 18:56:23 +0200 |
|---|---|---|
| committer | Oliver Kiddle <opk@zsh.org> | 2015-05-14 18:56:23 +0200 |
| commit | fec4e7243b3ef960fb5c4fd6b0bb54f4da34f949 (patch) | |
| tree | c2799e16c20dad23a645bf0203693f828154104b /Completion/Unix/Command/_git | |
| parent | 35110: don't implicitly initialize restricted integers to zero (diff) | |
| download | zsh-fec4e7243b3ef960fb5c4fd6b0bb54f4da34f949.tar zsh-fec4e7243b3ef960fb5c4fd6b0bb54f4da34f949.tar.gz zsh-fec4e7243b3ef960fb5c4fd6b0bb54f4da34f949.tar.bz2 zsh-fec4e7243b3ef960fb5c4fd6b0bb54f4da34f949.tar.lz zsh-fec4e7243b3ef960fb5c4fd6b0bb54f4da34f949.tar.xz zsh-fec4e7243b3ef960fb5c4fd6b0bb54f4da34f949.tar.zst zsh-fec4e7243b3ef960fb5c4fd6b0bb54f4da34f949.zip | |
35016: introduce new pretty formats %g[sdD] for reflog information
Diffstat (limited to 'Completion/Unix/Command/_git')
| -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 c01333ba4..5df01f706 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -5532,7 +5532,7 @@ __git_stashes () { local expl declare -a stashes - stashes=(${${(f)"$(_call_program stashes git stash list 2>/dev/null)"}/: */}) + stashes=(${(f)"$(_call_program stashes git stash list --pretty=format:%gd 2>/dev/null)"}) __git_command_successful $pipestatus || return 1 _wanted stashes expl stash compadd "$@" -a - stashes |
