Added better support for home/end

This commit is contained in:
Bruce Hill 2019-09-22 23:56:03 -07:00
parent 8e5b1497fa
commit 00653d0b11
2 changed files with 3 additions and 2 deletions

4
ask.c
View File

@ -236,10 +236,10 @@ static char *get_input(FILE *in, FILE *out, const char *prompt, const char *init
buf = NULL;
picked = NULL;
goto finished;
case KEY_CTRL_A:
case KEY_CTRL_A: case KEY_HOME:
b = 0;
break;
case KEY_CTRL_E:
case KEY_CTRL_E: case KEY_END:
b = len;
break;
case KEY_CTRL_U: {

View File

@ -162,6 +162,7 @@ int bgetkey(FILE *in, int *mouse_x, int *mouse_y, int timeout)
case '~':
switch (numcode) {
case 3: return KEY_DELETE;
case 4: return KEY_END;
case 5: return KEY_PGUP;
case 6: return KEY_PGDN;
case 15: return KEY_F5;