1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:28:11 +00:00

Add basic support for horizontal tabs in the VirtualConsole.

This commit is contained in:
Andreas Kling 2018-12-07 00:17:23 +01:00
parent f18c985546
commit 87b10f6e6e
2 changed files with 16 additions and 0 deletions

View file

@ -73,4 +73,5 @@ private:
EscapeState m_escape_state { Normal };
Vector<byte> m_parameters;
Vector<byte> m_intermediates;
byte* m_horizontal_tabs { nullptr };
};