about summary refs log tree commit diff
path: root/Completion/Unix
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@daniel.shahaf.name>2015-03-07 03:05:16 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2015-03-16 09:27:06 +0000
commit236da69842863691098c4b2b603b93d3fcb90bb6 (patch)
treed21c1a8d97e829192eefa8d925d0e2d5fab08c42 /Completion/Unix
parent097dedf9ab549902d31e286a429b41246d5e2fbd (diff)
downloadzsh-236da69842863691098c4b2b603b93d3fcb90bb6.tar.gz
zsh-236da69842863691098c4b2b603b93d3fcb90bb6.tar.xz
zsh-236da69842863691098c4b2b603b93d3fcb90bb6.zip
34671 plus tweaks: Add -1 -2 -J -V -x to _describe, use them to sort 'git --fixup' hash completions
Diffstat (limited to 'Completion/Unix')
-rw-r--r--Completion/Unix/Command/_git2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index aa1124706..e5639fab2 100644
--- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -5669,7 +5669,7 @@ __git_recent_commits () {
   expl=()
   _wanted heads expl 'head' compadd "$@" -a - heads && ret=0
   expl=()
-  _describe -t commits 'commit object name' descr && ret=0
+  _describe -2Vx -t commits 'commit object name' descr && ret=0
 }
 
 (( $+functions[__git_blob_objects] )) ||