On 2025-08-18 20:27, Vincent Lefevre wrote: [...]
/usr/share/zsh/vendor-completions/_qpdf just contains: #compdef qpdf eval $(/usr/bin/qpdf --completion-zsh)
[...]In any case, that's wrong as that unquoted $(...) requests IFS-splitting on the output of qpdf.
Should be: eval "$(/usr/bin/qpdf --completion-zsh)" -- Setphane