mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
grid: implement DAMAGE_SCROLL
This commit is contained in:
parent
0ddd96de0d
commit
a50be28b9d
5 changed files with 142 additions and 15 deletions
5
vt.c
5
vt.c
|
|
@ -158,9 +158,10 @@ action(struct terminal *term, enum action action, uint8_t c)
|
|||
LOG_DBG("execute: 0x%02x", c);
|
||||
switch (c) {
|
||||
case '\n':
|
||||
if (term->grid.cursor.row == term->grid.rows - 1)
|
||||
if (term->grid.cursor.row == term->grid.rows - 1) {
|
||||
grid_scroll(&term->grid, 1);
|
||||
else
|
||||
/* TODO: simulate \r? */
|
||||
} else
|
||||
grid_cursor_down(&term->grid, 1);
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue