1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:08:10 +00:00

Kernel: Make ^W and ^U actually erase characters

This is quite hackish but it makes using the js REPL a lot nicer. :^)
This commit is contained in:
Andreas Kling 2020-03-26 08:15:29 +01:00
parent 5ba8247cbb
commit f3c245fb96
2 changed files with 10 additions and 2 deletions

View file

@ -221,7 +221,7 @@ void TTY::erase_word()
if (ch != ' ')
first_char = true;
m_input_buffer.dequeue_end();
echo(m_termios.c_cc[VERASE]);
erase_character();
}
}
@ -229,10 +229,17 @@ void TTY::kill_line()
{
while (can_do_backspace()) {
m_input_buffer.dequeue_end();
echo(m_termios.c_cc[VERASE]);
erase_character();
}
}
void TTY::erase_character()
{
echo(m_termios.c_cc[VERASE]);
echo(' ');
echo(m_termios.c_cc[VERASE]);
}
void TTY::generate_signal(int signal)
{
if (!pgid())