diff options
| author | Felipe Contreras <felipe.contreras@gmail.com> | 2020-10-27 20:06:52 -0600 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2020-10-28 14:30:59 -0700 |
| commit | bed635664c4a60f4b19baff02f487aa4c0cd591e (patch) | |
| tree | d69f9719a307b7dec9cd9915bebedb0c953831bc | |
| parent | 81f717bb268e86eee5701b8199d8f030938a184c (diff) | |
| download | git-bed635664c4a60f4b19baff02f487aa4c0cd591e.tar.xz | |
completion: bash: synchronize zsh wrapper
A function was missing.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rw-r--r-- | contrib/completion/git-completion.bash | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index ec7dd12a41..40affd40e2 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -3510,6 +3510,14 @@ if [[ -n ${ZSH_VERSION-} ]] && compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0 } + __gitcomp_nl_append () + { + emulate -L zsh + + local IFS=$'\n' + compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0 + } + __gitcomp_file_direct () { emulate -L zsh |
