completion: zsh: simplify nl_append
It's exactly the same as __gitcomp_nl(), no need to duplicate code. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Felipe Contreras committed
Oct 27, 2020 at 20:07 UTC
cf6ce01660ada0286193025f7358c2d52bdb4fae
1 file changed
+1
-4
contrib/completion/git-completion.zsh
+1
-4
index 234e4278a2..7126c75001 100644
--- a/contrib/completion/git-completion.zsh
+++ b/contrib/completion/git-completion.zsh
@@ -119,10 +119,7 @@ __gitcomp_nl ()
__gitcomp_nl_append ()
{
- emulate -L zsh
-
- compset -P '*[=:]'
- compadd -Q -S "${4- }" -p "${2-}" -- ${(f)1} && _ret=0
+ __gitcomp_nl "$@"
}
__gitcomp_file_direct ()