mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:27:34 +00:00
LibVT: Give proper names to remaining VTxxx control functions
This commit is contained in:
parent
61c5bd08af
commit
bb6d6dce7b
2 changed files with 39 additions and 25 deletions
|
@ -210,15 +210,29 @@ private:
|
|||
// SD - Scroll Down (called "Pan Up" in VT510)
|
||||
void SD(const ParamVector&);
|
||||
|
||||
// IL - Insert Line
|
||||
void IL(const ParamVector&);
|
||||
|
||||
// DCH - Delete Character
|
||||
void DCH(const ParamVector&);
|
||||
|
||||
// DL - Delete Line
|
||||
void DL(const ParamVector&);
|
||||
|
||||
// CHA - Cursor Horizontal Absolute
|
||||
void CHA(const ParamVector&);
|
||||
|
||||
// REP - Repeat
|
||||
void REP(const ParamVector&);
|
||||
|
||||
// VPA - Vertical Line Position Absolute
|
||||
void VPA(const ParamVector&);
|
||||
|
||||
// ECH - Erase Character
|
||||
void ECH(const ParamVector&);
|
||||
|
||||
// FIXME: Find the right names for these.
|
||||
void escape$t(const ParamVector&);
|
||||
void escape$L(const ParamVector&);
|
||||
void escape$M(const ParamVector&);
|
||||
void escape$P(const ParamVector&);
|
||||
void escape$G(const ParamVector&);
|
||||
void escape$X(const ParamVector&);
|
||||
void escape$b(const ParamVector&);
|
||||
void escape$d(const ParamVector&);
|
||||
void XTERM_WM(const ParamVector&);
|
||||
|
||||
TerminalClient& m_client;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue