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

LibVT: Keep track of the 'true' line endings

This commit is contained in:
Ali Mohammad Pur 2021-06-19 18:17:18 +04:30 committed by Andreas Kling
parent c38fafbf4e
commit 424965954f
4 changed files with 35 additions and 0 deletions

View file

@ -432,6 +432,9 @@ protected:
Vector<bool> m_horizontal_tabs;
u32 m_last_code_point { 0 };
size_t m_max_history_lines { 1024 };
Optional<u16> m_column_before_carriage_return;
bool m_controls_are_logically_generated { false };
};
}