From ea012211b6ad4d6973504b334816c568af9e60f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Sun, 2 May 2021 22:17:15 +0200 Subject: move to next when removing inbox tag --- src/buffer/threads.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/buffer/threads.rs b/src/buffer/threads.rs index 9439bb4..85ffb0f 100644 --- a/src/buffer/threads.rs +++ b/src/buffer/threads.rs @@ -83,6 +83,7 @@ impl Threads { }, Key::Char('i') => { self.threads[self.i].remove_tag("inbox"); + self.i += 1; } Key::Char('s') => { let sent = Threads::from_query(String::from("tag:sent")); -- cgit v1.2.1