mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 03:37:43 +00:00
Shell: Ignore tab key for now.
This commit is contained in:
parent
ad1c3c748f
commit
b860da3ea5
1 changed files with 5 additions and 0 deletions
|
@ -111,6 +111,11 @@ String LineEditor::get_line()
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (ch == '\t') {
|
||||||
|
// FIXME: Implement tab-completion.
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (ch == 8 || ch == g.termios.c_cc[VERASE]) {
|
if (ch == 8 || ch == g.termios.c_cc[VERASE]) {
|
||||||
if (m_buffer.is_empty())
|
if (m_buffer.is_empty())
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue