1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:57:45 +00:00

LibVT: Support NEL (Next Line)

I think this can just behave as if you sent a newline character ('\n').
This commit is contained in:
Andreas Kling 2020-01-25 20:01:43 +01:00
parent ab77bd4c3a
commit 897ad1b927
2 changed files with 11 additions and 0 deletions

View file

@ -172,6 +172,7 @@ private:
void escape$h_l(bool, bool, const ParamVector&);
void escape$c(const ParamVector&);
void escape$f(const ParamVector&);
void NEL();
TerminalClient& m_client;