From 2276a796f36cb6e213aca3b760b411202ed24e0e Mon Sep 17 00:00:00 2001 From: Koni Marti Date: Tue, 14 May 2024 23:43:12 +0200 Subject: ui: add select-last-message option Add a [ui].select-last-message option to position the cursor at the bottom of the message list view. Fixes: https://todo.sr.ht/~rjarry/aerc/254 Changelog-added: Add `[ui].select-last-message` option to position cursor at the bottom of the view. Suggested-by: Bence Ferdinandy Requested-by: Tomasz Kramkowski Signed-off-by: Koni Marti Tested-by: Tomasz Kramkowski Acked-by: Robin Jarry --- app/account.go | 1 + 1 file changed, 1 insertion(+) (limited to 'app/account.go') diff --git a/app/account.go b/app/account.go index ab5793bc..07c6801d 100644 --- a/app/account.go +++ b/app/account.go @@ -247,6 +247,7 @@ func (acct *AccountView) newStore(name string) *lib.MessageStore { uiConf.ThreadingEnabled, uiConf.ForceClientThreads, uiConf.ClientThreadsDelay, + uiConf.SelectLast, uiConf.ReverseOrder, uiConf.ReverseThreadOrder, uiConf.SortThreadSiblings, -- cgit