1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:17:35 +00:00

Shell: Ignore tab key for now.

This commit is contained in:
Andreas Kling 2019-05-07 02:55:56 +02:00
parent ad1c3c748f
commit b860da3ea5

View file

@ -111,6 +111,11 @@ String LineEditor::get_line()
break;
}
if (ch == '\t') {
// FIXME: Implement tab-completion.
continue;
}
if (ch == 8 || ch == g.termios.c_cc[VERASE]) {
if (m_buffer.is_empty())
continue;