From: Tarek BOCHKATI Date: Wed, 10 Mar 2021 23:36:17 +0000 (+0100) Subject: telnet: support end and home keys X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=78462af05feec1627474d26a2c91fcdada5b180e;p=fw%2Fopenocd telnet: support end and home keys this will help navigate to the line start and end easily Change-Id: I3f42eb5267df64c59a85ece67de5fce39a8843ec Signed-off-by: Tarek BOCHKATI Reviewed-on: http://openocd.zylin.com/6094 Reviewed-by: Antonio Borneo Tested-by: jenkins --- diff --git a/src/server/telnet_server.c b/src/server/telnet_server.c index 407ab68ae..e9de4f033 100644 --- a/src/server/telnet_server.c +++ b/src/server/telnet_server.c @@ -596,6 +596,12 @@ static int telnet_input(struct connection *connection) telnet_history_up(connection); } else if (*buf_p == 'B') { /* cursor down */ telnet_history_down(connection); + } else if (*buf_p == 'F') { /* end key */ + telnet_move_cursor(connection, t_con->line_size); + t_con->state = TELNET_STATE_DATA; + } else if (*buf_p == 'H') { /* home key */ + telnet_move_cursor(connection, 0); + t_con->state = TELNET_STATE_DATA; } else if (*buf_p == '3') t_con->last_escape = *buf_p; else