diff options
author | Parasrah <dev@parasrah.com> | 2022-01-06 21:54:28 -0700 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-01-07 13:54:10 +0100 |
commit | 71eda7d37c8ef38502c360b518fcbf5960497eea (patch) | |
tree | 07b9383865f65934001378f170c942242bc0f054 /doc/aerc-config.5.scd | |
parent | b19b844a6326793f078b4a03eaf63ca96528796e (diff) | |
download | aerc-71eda7d37c8ef38502c360b518fcbf5960497eea.tar.gz |
completions: add support for completing multiple addresses
as per the discussion https://lists.sr.ht/~sircmpwn/aerc/patches/15367
this handles completions in `completer/completer.go` by enabling the
completer to return a `prefix` that will be prepended to the selected
completion candidate.
Diffstat (limited to 'doc/aerc-config.5.scd')
-rw-r--r-- | doc/aerc-config.5.scd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/aerc-config.5.scd b/doc/aerc-config.5.scd index ae030747..2ef4ebc4 100644 --- a/doc/aerc-config.5.scd +++ b/doc/aerc-config.5.scd @@ -318,8 +318,8 @@ These options are configured in the *[compose]* section of aerc.conf. *address-book-cmd* Specifies the command to be used to tab-complete email addresses. Any - occurrence of "%s" in the address-book-cmd will be replaced with what the - user has typed so far. + occurrence of "%s" in the address-book-cmd will be replaced with anything + the user has typed after the last comma. The command must output the completions to standard output, one completion per line. Each line must be tab-delimited, with an email address occurring as |