Completing email addresses with Zsh and notmuch is amazing!
% mutt martin.krafft<tab>
email address (notmuch)
martin.krafft@example.org
[…]
In /usr/share/zsh/vendor-completions/_email-notmuch, the following
call retrieves the full list of addresses:
local -a notmuch_addr
notmuch_addr=( ${(f)"$(notmuch address --deduplicate=address \
--output=address -- from:/$PREFIX/)"} )
which populates the array like so:
Martin Krafft <martin.krafft@example.org>
Martin Krafft <martin.krafft@example.com>
However, the completion output, as well as the completion output
only have the email address, not the full name.
Please add the full name to the outputs.