mirror of
https://github.com/troglobit/editline.git
synced 2025-05-06 12:31:45 +08:00
Clarify code when CONFIG_ANSI_ARROWS is selected.
This commit is contained in:
parent
c7b78df006
commit
02ea37e4de
@ -815,13 +815,12 @@ static el_status_t meta(void)
|
|||||||
|
|
||||||
if ((c = tty_get()) == EOF)
|
if ((c = tty_get()) == EOF)
|
||||||
return CSeof;
|
return CSeof;
|
||||||
|
|
||||||
#ifdef CONFIG_ANSI_ARROWS
|
#ifdef CONFIG_ANSI_ARROWS
|
||||||
/* Also include VT-100 arrows. */
|
/* Also include VT-100 arrows. */
|
||||||
if (c == '[' || c == 'O') {
|
if (c == '[' || c == 'O') {
|
||||||
c = tty_get();
|
c = tty_get();
|
||||||
// printf ("E[%c\n", c);
|
|
||||||
switch (c) {
|
switch (c) {
|
||||||
default: return ring_bell();
|
|
||||||
case EOF: return CSeof;
|
case EOF: return CSeof;
|
||||||
case '2': tty_get(); return CSstay; /* Insert */
|
case '2': tty_get(); return CSstay; /* Insert */
|
||||||
case '3': tty_get(); return del_char(); /* Delete */
|
case '3': tty_get(); return del_char(); /* Delete */
|
||||||
@ -833,7 +832,11 @@ static el_status_t meta(void)
|
|||||||
case 'D': return bk_char(); /* Right */
|
case 'D': return bk_char(); /* Right */
|
||||||
case 'F': return end_line(); /* End */
|
case 'F': return end_line(); /* End */
|
||||||
case 'H': return beg_line(); /* Home */
|
case 'H': return beg_line(); /* Home */
|
||||||
|
default: /* Fall through */
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return ring_bell();
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_ANSI_ARROWS */
|
#endif /* CONFIG_ANSI_ARROWS */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user