diff options
author | Robin Jarry <robin@jarry.cc> | 2023-08-12 00:51:41 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-11-02 16:30:57 +0100 |
commit | 0b0095eeadaf7645b731f277c06e3f19e63ea981 (patch) | |
tree | d299d8b6a9b234eb3f2f7e0d7d9ec6b49838fb80 /config/aerc.conf | |
parent | 44a55d41ad6b5c61c75456414e13aec94b367b02 (diff) | |
download | aerc-0b0095eeadaf7645b731f277c06e3f19e63ea981.tar.gz |
complete: allow disabling automatic completion
Allow setting complete-min-chars = manual to disable automatic
completion.
Changelog-added: Setting `complete-min-chars=manual` in `aerc.conf` now
disables automatic completion, leaving only manually triggered
completion.
Signed-off-by: Robin Jarry <robin@jarry.cc>
Reviewed-by: Tim Culverhouse <tim@timculverhouse.com>
Diffstat (limited to 'config/aerc.conf')
-rw-r--r-- | config/aerc.conf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/aerc.conf b/config/aerc.conf index d8142197..0dfab7fc 100644 --- a/config/aerc.conf +++ b/config/aerc.conf @@ -241,6 +241,10 @@ # The minimum required characters to allow auto-completion to be triggered after # completion-delay. # +# Setting this to "manual" disables automatic completion, leaving only the +# manually triggered completion with the $complete key (see aerc-binds(5) for +# more details). +# # Default: 1 #completion-min-chars=1 |