diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-05-19 18:21:02 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-05-19 18:21:02 -0400 |
commit | fa5d8d7a007aa0030a4b2bfb122dabab3e69ad4b (patch) | |
tree | e8ac0af8b0699528d048c6dd7bc7c89b0c6ca52b /widgets/msglist.go | |
parent | f9251c2344d7a7d9661fdefa66734dceefba8488 (diff) | |
download | aerc-fa5d8d7a007aa0030a4b2bfb122dabab3e69ad4b.tar.gz |
Advance cursor after :delete and :move
So that you can repeat the action on the next message if appropriate
Diffstat (limited to 'widgets/msglist.go')
-rw-r--r-- | widgets/msglist.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/widgets/msglist.go b/widgets/msglist.go index f7398dc..caa868f 100644 --- a/widgets/msglist.go +++ b/widgets/msglist.go @@ -109,10 +109,6 @@ func (ml *MessageList) storeUpdate(store *lib.MessageStore) { } if len(store.Uids) > 0 { - // Prevent selecting beyond the last message - for ml.selected >= len(store.Uids) { - ml.Prev() - } // When new messages come in, advance the cursor accordingly // Note that this assumes new messages are appended to the top, which // isn't necessarily true once we implement SORT... ideally we'd look @@ -122,6 +118,11 @@ func (ml *MessageList) storeUpdate(store *lib.MessageStore) { ml.Next() } } + if len(store.Uids) < ml.nmsgs && ml.nmsgs != 0 { + for i := 0; i < ml.nmsgs-len(store.Uids); i++ { + ml.Prev() + } + } ml.nmsgs = len(store.Uids) } |