terminal: track whether the scrollback is limited

The terminal will have an unlimited scrollback mode
where new memory is allocated when it is filled up.
This commit is contained in:
Matheus Afonso Martins Moreira 2024-04-07 05:42:12 -03:00
parent 5e344d2b86
commit 297b5c4734
2 changed files with 2 additions and 0 deletions

View file

@ -370,6 +370,7 @@ struct terminal {
int cols; /* number of columns */
int rows; /* number of rows */
struct scroll_region scroll_region;
bool unlimited_scrollback;
struct charsets charsets;
struct charsets saved_charsets; /* For save/restore cursor + attributes */