commit 91a72220b6882b8ab4ae9eb80beeb2c02348d5ae from: Omar Polo date: Sat Mar 13 11:50:56 2021 UTC display the current keychord in the minibuffer if empty commit - 156f1501ab882e3195b1274f957f3938ea40d695 commit + 91a72220b6882b8ab4ae9eb80beeb2c02348d5ae blob - 820a04544414f29f4ca42c1c336cb2e09f8b6b7a blob + f2ff87717a589a6551b315b65d75f90448e62d15 --- ui.c +++ ui.c @@ -1498,6 +1498,9 @@ redraw_minibuffer(void) wprintw(minibuf, "%s", ministate.curmesg); } + if (!in_minibuffer && ministate.curmesg == NULL) + wprintw(minibuf, "%s", keybuf); + wmove(minibuf, 0, off_x + ministate.off - skip); }