completion: zsh: simplify direct compadd

Instead of manually removing the suffix so zsh can add its own, we can
tell zsh to add no suffix, so we don't have to remove it.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Felipe Contreras 2020-10-27 20:06:59 -06:00 committed by Junio C Hamano
parent 2f459b0060
commit ecaf798999
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ __gitcomp_direct ()
emulate -L zsh

compset -P '*[=:]'
compadd -Q -- ${${(f)1}% } && _ret=0
compadd -Q -S '' -- ${(f)1} && _ret=0
}

__gitcomp_direct_append ()