#941213 Completer should use "Full Name <em@il.address>"

Package:
notmuch
Source:
notmuch
Description:
thread-based email index, search and tagging
Submitter:
martin f krafft
Date:
2019-09-26 14:45:04 UTC
Severity:
wishlist
#941213#5
Date:
2019-09-26 14:41:51 UTC
From:
To:
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.