Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

[PATCH 6/7] completion: git: unique name for __git_recent_commits



From: Daniel Hahler <git@xxxxxxxxxx>

This helps to distinguish it from __git_commit_objects.
---
 Completion/Unix/Command/_git | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index 8135c6d..09ea68b 100644
--- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -5697,7 +5697,7 @@ __git_recent_commits () {
   expl=()
   _wanted heads expl 'head' compadd "$@" -a - heads && ret=0
   expl=()
-  _describe -2Vx -t commits 'commit object name' descr && ret=0
+  _describe -2Vx -t commits 'recent commit object name' descr && ret=0
 }
 
 (( $+functions[__git_blob_objects] )) ||
-- 
2.4.0.dirty



Messages sorted by: Reverse Date, Date, Thread, Author