git.99rst.org
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
| inline |
side by side
(parent:
3791968
)
completion: zsh: add missing direct_append
author
Felipe Contreras
<redacted>
Wed, 28 Oct 2020 02:06:56 +0000
(20:06 -0600)
committer
Junio C Hamano
<redacted>
Wed, 28 Oct 2020 21:30:59 +0000
(14:30 -0700)
Commit
688077910b
forgot to add the corresponding zsh function.
Signed-off-by: Felipe Contreras <redacted>
Signed-off-by: Junio C Hamano <redacted>
contrib/completion/git-completion.zsh
patch
|
blob
|
history
diff --git
a/contrib/completion/git-completion.zsh
b/contrib/completion/git-completion.zsh
index b894cb52db49baba9798a98335596eab9d772343..c5b875993ff8ea6aac4b28727e8ade1d23c7d297 100644
(file)
--- a/
contrib/completion/git-completion.zsh
+++ b/
contrib/completion/git-completion.zsh
@@
-105,6
+105,11
@@
__gitcomp_direct ()
compadd -Q -- ${${=1}% } && _ret=0
}
+__gitcomp_direct_append ()
+{
+ __gitcomp_direct "$@"
+}
+
__gitcomp_nl ()
{
emulate -L zsh
git clone https://git.99rst.org/PROJECT