aboutsummaryrefslogtreecommitdiff
path: root/lib/interestingtimes.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2015-12-30 20:15:34 -0600
committerRob Landley <rob@landley.net>2015-12-30 20:15:34 -0600
commitf82a848793fbba3b3416fe037947afe73785270b (patch)
tree774a7ac1fb299ee2a7935c75d572c467dca35ba6 /lib/interestingtimes.c
parent3a70500a4b11623651d1ffd779592a521e5c738b (diff)
downloadtoybox-f82a848793fbba3b3416fe037947afe73785270b.tar.gz
Add more keys to scan_key() and fix hang in scan_key_getsize().
Diffstat (limited to 'lib/interestingtimes.c')
-rw-r--r--lib/interestingtimes.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/interestingtimes.c b/lib/interestingtimes.c
index ed8a0751..612d9d6e 100644
--- a/lib/interestingtimes.c
+++ b/lib/interestingtimes.c
@@ -71,6 +71,7 @@ int scan_key_getsize(char *scratch, int block, unsigned *xx, unsigned *yy)
}
}
while (512&(key = scan_key(scratch, block&1))) {
+ if (key<0) break;
if (xx) *xx = (key>>10)&1023;
if (yy) *yy = (key>>20)&1023;
}
@@ -118,7 +119,12 @@ struct scan_key_list {
// up down right left pgup pgdn home end ins
{"UP", "\033[A"}, {"DOWN", "\033[B"}, {"RIGHT", "\033[C"}, {"LEFT", "\033[D"},
{"PGUP", "\033[5~"}, {"PGDN", "\033[6~"}, {"HOME", "\033OH"},
- {"END", "\033OF"}, {"INSERT", "\033[2~"}
+ {"END", "\033OF"}, {"INSERT", "\033[2~"},
+ {"SUP", "\033[1;2A"}, {"AUP", "\033[1;3A"}, {"CUP", "\033[1;5A"},
+ {"SDOWN", "\033[1;2B"}, {"ADOWN", "\033[1;3B"}, {"CDOWN", "\033[1;5B"},
+ {"SRIGHT", "\033[1;2C"}, {"ARIGHT", "\033[1;3C"}, {"CRIGHT", "\033[1;5C"},
+ {"SLEFT", "\033[1;2D"}, {"ALEFT", "\033[1;3D"}, {"CLEFT", "\033[1;5D"}
+
);
// Scan stdin for a keypress, parsing known escape sequences
@@ -210,6 +216,7 @@ void tty_reset(void)
tty_esc("0m");
tty_jump(0, 999);
tty_esc("K");
+ fflush(0);
}
void tty_sigreset(int i)