From d3379dd7f0d2e5caffeda4a97fc72649421cccca Mon Sep 17 00:00:00 2001 From: Jeffas Date: Wed, 2 Oct 2019 17:16:15 +0100 Subject: Preserve sorting order in search results This ensures that the search results follow the order of the current sort so that cycling throught the results proceeds in displayed order. --- lib/msgstore.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/msgstore.go') diff --git a/lib/msgstore.go b/lib/msgstore.go index 8cceed8..68e20d5 100644 --- a/lib/msgstore.go +++ b/lib/msgstore.go @@ -4,6 +4,7 @@ import ( "io" "time" + "git.sr.ht/~sircmpwn/aerc/lib/sort" "git.sr.ht/~sircmpwn/aerc/models" "git.sr.ht/~sircmpwn/aerc/worker/types" ) @@ -386,6 +387,7 @@ func (store *MessageStore) Search(args []string, cb func([]uint32)) { }, func(msg types.WorkerMessage) { switch msg := msg.(type) { case *types.SearchResults: + sort.SortBy(msg.Uids, store.uids) cb(msg.Uids) } }) -- cgit v1.2.3