Skip to content

Commit a7804a1

Browse files
felipecgitster
authored andcommitted
completion: zsh: add missing direct_append
Commit 6880779 forgot to add the corresponding zsh function. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 3791968 commit a7804a1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

contrib/completion/git-completion.zsh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,11 @@ __gitcomp_direct ()
105105
compadd -Q -- ${${=1}% } && _ret=0
106106
}
107107

108+
__gitcomp_direct_append ()
109+
{
110+
__gitcomp_direct "$@"
111+
}
112+
108113
__gitcomp_nl ()
109114
{
110115
emulate -L zsh

0 commit comments

Comments
 (0)