1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-30 10:22:13 +00:00

LibVT+Kernel: Support clearing the scrollback buffer

As per the `xterm ctlseqs` documentation, `\e3J` should clear the
scrollback buffer, and leave the visible lines unchanged.

This commit fixes a FIXME.
This commit is contained in:
Daniel Bertalan 2021-06-05 09:29:49 +02:00 committed by Andreas Kling
parent 221ba1aac8
commit 8f8fd9c5a8
4 changed files with 14 additions and 11 deletions

View file

@ -33,7 +33,7 @@ void ConsoleImpl::clear()
{
m_client.clear();
}
void ConsoleImpl::clear_including_history()
void ConsoleImpl::clear_history()
{
}