diff options
author | Kalyan Sriram <kalyan@coderkalyan.com> | 2021-11-13 08:10:09 +0000 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2021-11-13 15:25:04 +0100 |
commit | 402612fd9788f071a5d7ae0045989977b98d896f (patch) | |
tree | 7d48f203a922cb6933146bda744f5dc3a9e90b07 /doc | |
parent | 88d28908d2b2cd9d416bce76f384153ba1267cdb (diff) | |
download | aerc-402612fd9788f071a5d7ae0045989977b98d896f.tar.gz |
notmuch: allow sort by file order
When using the notmuch backend, it often makes more sense to sort
folders (actual virtual folders, or queries) by the order specified in
the query-map file, rather than alphabetically. This patch introduces a
configuration option (disabled by default) that allows this.
Additionally, due to the notmuch backend previously using maps (which
are order-undefined) to store the list of queries, default query
selection on aerc startup fluctuated. This patch fixes that by using
slices to store query order.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/aerc-config.5.scd | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/aerc-config.5.scd b/doc/aerc-config.5.scd index fbfa64e5..c647459a 100644 --- a/doc/aerc-config.5.scd +++ b/doc/aerc-config.5.scd @@ -427,6 +427,12 @@ Note that many of these configuration options are written for you, such as Default: no folders +*enable-folders-sort* + If true, folders are sorted, first by specified folders (see *folders-sort*), + then alphabetically. + + Default: true + *folders-sort* Specifies a comma separated list of folders to be shown at the top of the list in the provided order. Remaining folders will be sorted alphabetically. |