From 7417df0f3ca20d6fcc0ef6ecb122dacf2afd741f Mon Sep 17 00:00:00 2001 From: Ville Ranki Date: Thu, 18 Oct 2018 17:02:38 +0300 Subject: Alt-a to jump to next channel with unread messages. --- ui/view-main.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ui/view-main.go') diff --git a/ui/view-main.go b/ui/view-main.go index f38043a..8bd0668 100644 --- a/ui/view-main.go +++ b/ui/view-main.go @@ -196,6 +196,8 @@ func (view *MainView) KeyEventHandler(roomView *RoomView, key *tcell.EventKey) * searchModal := NewFuzzySearchModal(view, 42, 12) view.parent.views.AddPage("fuzzy-search-modal", searchModal, true, true) view.parent.app.SetFocus(searchModal) + case c == 'a': + view.SwitchRoom(view.roomList.NextWithActivity()) case c == 'l': view.ShowBare(roomView) default: -- cgit v1.2.3