From b0bf51b90bc233024f1b82bf3f050d26f677b935 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Mon, 3 May 2021 22:57:49 +0200 Subject: scroll window Closes #3 --- src/buffer/threads.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/buffer/threads.rs') diff --git a/src/buffer/threads.rs b/src/buffer/threads.rs index 49d9924..893b4ec 100644 --- a/src/buffer/threads.rs +++ b/src/buffer/threads.rs @@ -92,6 +92,8 @@ impl Threads { } else { self.i - 1 }, + Key::Char('e') => window.scroll_down(), + Key::Char('y') => window.scroll_up(), Key::Char('i') => { self.threads[self.i].remove_tag("inbox"); self.i += 1; -- cgit v1.2.1