diff options
Diffstat (limited to '')
-rw-r--r-- | ui.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ui.c b/ui.c index e31e824..ab519b6 100644 --- a/ui.c +++ b/ui.c @@ -367,6 +367,19 @@ void uiShowNum(int num, bool relative) { uiPrompt(false); } +static void uiShowAuto(void) { + struct Window *unread = NULL; + struct Window *hot; + for (hot = windows.head; hot; hot = hot->next) { + if (hot->hot) break; + if (!unread && hot->unread) unread = hot; + } + if (!hot && !unread) return; + windowShow(hot ? hot : unread); + uiStatus(); + uiPrompt(false); +} + void uiCloseTag(struct Tag tag) { windowClose(windowFor(tag)); uiStatus(); @@ -447,6 +460,7 @@ static void keyCode(wchar_t code) { static void keyMeta(wchar_t ch) { struct Window *win = windows.active; if (ch >= L'0' && ch <= L'9') uiShowNum(ch - L'0', false); + if (ch == L'a') uiShowAuto(); if (!win) return; switch (ch) { break; case L'b': edit(win->tag, EditBackWord, 0); |