From c1283ed18ad5ed04b8b66e6f2ea88101f38e9e89 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Sun, 5 Aug 2018 13:42:37 -0400 Subject: Add ^L redraw --- ui.c | 1 + 1 file changed, 1 insertion(+) (limited to 'ui.c') diff --git a/ui.c b/ui.c index 01dcbab..5a7d35c 100644 --- a/ui.c +++ b/ui.c @@ -309,6 +309,7 @@ static void enter(void) { static void keyChar(wint_t ch) { switch (ch) { + break; case CTRL('L'): clearok(curscr, true); break; case CTRL('B'): moveLeft(); break; case CTRL('F'): moveRight(); break; case CTRL('A'): moveHome(); -- cgit 1.4.1