summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-05 13:42:37 -0400
committerJune McEnroe <june@causal.agency>2018-08-05 13:42:37 -0400
commitc1283ed18ad5ed04b8b66e6f2ea88101f38e9e89 (patch)
treed79b34b6026020f9e7b5650b3c431a1498cc3115
parentUse 16 colors if available (diff)
downloadcatgirl-c1283ed18ad5ed04b8b66e6f2ea88101f38e9e89.tar.gz
catgirl-c1283ed18ad5ed04b8b66e6f2ea88101f38e9e89.zip
Add ^L redraw
-rw-r--r--ui.c1
1 files changed, 1 insertions, 0 deletions
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();
t Xu 2018-04-19eval: Reap zombies after built-in commands and functionsHerbert Xu 2018-04-19redir: Fix typo in noclobber codeHerbert Xu 2018-04-19expand: Fix glibc glob(3) supportHerbert Xu 2018-04-02expand: Fix buffer overflow in expandmetaHerbert Xu 2018-04-02builtin: Move echo space/nl handling into print_escape_strHerbert Xu 2018-04-02builtin: Fix echo performance regressionHerbert Xu 2018-04-02expand: Fix ghost fields with unquoted $@/$*Herbert Xu 2018-04-02parser: Allow newlines within parameter substitutionHerbert Xu 2018-04-02expand: Fix bugs with words connected to the right of $@Herbert Xu 2018-03-25Revert "[BUILTIN] Remove unnecessary restoration of format string in printf"Herbert Xu 2018-03-22parser: Fix backquote support in here-document EOF markHerbert Xu