Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH] git add -p file completion
- X-seq: zsh-workers 26798
- From: Simon Ruderich <simon@xxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: [PATCH] git add -p file completion
- Date: Tue, 31 Mar 2009 18:04:47 +0200
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi,
I found a minor bug in _git completion. It doesn't allow file
completions after `git add -p` which works fine with git. The
following patch fixes this.
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index 8c414b8..91607d3 100644
- --- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -1331,7 +1332,7 @@ _git-add () {
'(-v --verbose)'{-v,--verbose}'[show files as they are added]' \
'(-f --force)'{-f,--force}'[allow adding otherwise ignored files]' \
'(-i --interactive : -)'{-i,--interactive}'[add contents interactively to the index]' \
- - '(-p --patch : -)'{-p,--patch}'[like -i but go directly into patch mode for specified files]' \
+ '(-p --patch)'{-p,--patch}'[like -i but go directly into patch mode for specified files]' \
'(-u --update)'{-u,--update}'[update only files git already knows about]' \
'(-A --all)'{-A,--all}'[act as both add . and add -u]' \
'(-N --intent-to-add)'{-N,--intent-to-add}'[record only that the path will be added later]' \
By the way, is the usage of : - documented somewhere in the
completion man page? I couldn't find it.
Thanks,
Simon
- --
+ privacy is necessary
+ using http://gnupg.org
+ public key id: 0x6115F804EFB33229
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iEYEARECAAYFAknSPx8ACgkQYRX4BO+zMik57QCfehWFannV0in/UuoGzLzlrEcd
tqYAoKmCLpZB3GSFR9HyLRtvKLiUyFTn
=zYYM
-----END PGP SIGNATURE-----
Messages sorted by:
Reverse Date,
Date,
Thread,
Author