tmus

TUI Music Player
git clone https://git.sinitax.com/sinitax/tmus
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

commit 852d8efa882fe80718d63352b5432d2a04c2de74
parent 57609d2ef265bc6b2ae2d5b04605d57150971ebe
Author: Louis Burda <quent.burda@gmail.com>
Date:   Mon, 24 Jan 2022 17:53:05 +0100

Added keybind to force window refresh

Diffstat:
Msrc/main.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/main.c b/src/main.c @@ -1001,6 +1001,9 @@ void main_input(wint_t c) { switch (c) { + case KEY_CTRL('r'): + redrawwin(stdscr); + break; case KEY_TAB: pane_sel = pane_sel == &pane_left ? &pane_right : &pane_left;