diff options
author | owl <owl@u8.is> | 2023-09-16 11:55:31 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-09-19 11:23:40 +0200 |
commit | 43df87552c2c54a7cc346cb044d08dc8ee5b6925 (patch) | |
tree | d4cb4524ce16db99318275203e52ee740cda5bf3 /doc | |
parent | 4400b08a95b4f4548388e34858516df33d80b2d3 (diff) | |
download | aerc-43df87552c2c54a7cc346cb044d08dc8ee5b6925.tar.gz |
config: make all message list symbols/icons configurable
This patch removes the hard coded letters (which don't make sense in all
languages), and replaces them with configurable icons, like the existing
`icon-attachment` and other icons.
Signed-off-by: owl <owl@u8.is>
Acked-by: Robin Jarry <robin@jarry.cc>
Reviewed-by: Bence Ferdinandy <bence@ferdinandy.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/aerc-config.5.scd | 36 |
1 files changed, 35 insertions, 1 deletions
diff --git a/doc/aerc-config.5.scd b/doc/aerc-config.5.scd index 3f0b076a..50e7d803 100644 --- a/doc/aerc-config.5.scd +++ b/doc/aerc-config.5.scd @@ -345,10 +345,44 @@ These options are configured in the *[ui]* section of _aerc.conf_. Default: _[s!]_ *icon-attachment* = _<string>_ - The icon to display index-format when the message has an attachment. + The icon to display in *column-flags* when the message has an + attachment. Default: _a_ +*icon-new* = _<string>_ + The icon to display in *column-flags* when the message is unread and + new. + + Default: _N_ + +*icon-old* = _<string>_ + The icon to display in *column-flags* when the message is unread and + old. + + Default: _O_ + +*icon-replied* = _<string>_ + The icon to display in *column-flags* when the message has been replied + to. + + Default: _r_ + +*icon-flagged* = _<string>_ + The icon to display in *column-flags* when the message is flagged. + + Default: _!_ + +*icon-marked* = _<string>_ + The icon to display in *column-flags* when the message is marked. + + Default: _\*_ + +*icon-deleted* = _<string>_ + The icon to display in *column-flags* when the message has been deleted. + + Default: _D_ + *fuzzy-complete* = _true_|_false_ When typing a command or option, the popover will now show not only the items /starting/ with the string input by the user, but it will also show |