mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:57:35 +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;
|
||||
}
|
||||
|
||||
if (ch == '\t') {
|
||||
// FIXME: Implement tab-completion.
|
||||
continue;
|
||||
}
|
||||
|
||||
if (ch == 8 || ch == g.termios.c_cc[VERASE]) {
|
||||
if (m_buffer.is_empty())
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue