mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] readline: add ctrl-u (unix-line-discard)
@ 2019-02-01 12:46 Robert Karszniewicz
  2019-02-05 11:41 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Robert Karszniewicz @ 2019-02-01 12:46 UTC (permalink / raw)
  To: barebox

Signed-off-by: Robert Karszniewicz <r.karszniewicz@phytec.de>
---
 lib/readline.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/readline.c b/lib/readline.c
index 904a77639..d026af110 100644
--- a/lib/readline.c
+++ b/lib/readline.c
@@ -290,6 +290,7 @@ int readline(const char *prompt, char *buf, int len)
 			insert = !insert;
 			break;
 		case BB_KEY_ERASE_LINE:
+		case CTL_CH('u'):
 			BEGINNING_OF_LINE();
 			ERASE_TO_EOL();
 			break;
-- 
2.11.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-02-05 11:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-01 12:46 [PATCH] readline: add ctrl-u (unix-line-discard) Robert Karszniewicz
2019-02-05 11:41 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox