Skip to content
Snippets Groups Projects
Commit 5f262be5 authored by René Kijewski's avatar René Kijewski
Browse files

Merge pull request #1653 from medicalwei/shell_backspace

Add backspace functionality in shell
parents 762e9492 b5d3c656
No related branches found
No related tags found
No related merge requests found
...@@ -235,6 +235,19 @@ static int readline(shell_t *shell, char *buf, size_t size) ...@@ -235,6 +235,19 @@ static int readline(shell_t *shell, char *buf, size_t size)
shell->put_char('\n'); shell->put_char('\n');
return 0; return 0;
} }
/* QEMU uses 0x7f (DEL) as backspace, while 0x08 (BS) is for most terminals */
else if (c == 0x08 || c == 0x7f) {
if (line_buf_ptr == buf) {
/* The line is empty. */
continue;
}
*--line_buf_ptr = '\0';
/* white-tape the character */
shell->put_char('\b');
shell->put_char(' ');
shell->put_char('\b');
}
else { else {
*line_buf_ptr++ = c; *line_buf_ptr++ = c;
shell->put_char(c); shell->put_char(c);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment