1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:37:36 +00:00

LibVT: Support IND and RI (cursor down/up basically)

This commit is contained in:
Andreas Kling 2020-01-25 20:17:50 +01:00
parent 0d191aae13
commit dca92af431
2 changed files with 23 additions and 0 deletions

View file

@ -173,6 +173,8 @@ private:
void escape$c(const ParamVector&);
void escape$f(const ParamVector&);
void NEL();
void IND();
void RI();
TerminalClient& m_client;