Add ^L redraw

master
Curtis McEnroe 2018-08-05 13:42:37 -04:00
parent 7beb4c9912
commit c1283ed18a
No known key found for this signature in database
GPG Key ID: CEA2F97ADCFCD77C
1 changed files with 1 additions and 0 deletions

1
ui.c
View File

@ -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();