mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-02 01:40:13 -05:00
csi: ‘CSI s’ and ‘CSI u’ now saves/restores attributes and charsets
This commit is contained in:
parent
934466bc84
commit
975e70dae1
2 changed files with 6 additions and 0 deletions
4
csi.c
4
csi.c
|
|
@ -1108,10 +1108,14 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
|
||||
case 's':
|
||||
term->grid->saved_cursor = term->grid->cursor;
|
||||
term->vt.saved_attrs = term->vt.attrs;
|
||||
term->saved_charsets = term->charsets;
|
||||
break;
|
||||
|
||||
case 'u':
|
||||
term_restore_cursor(term, &term->grid->saved_cursor);
|
||||
term->vt.attrs = term->vt.saved_attrs;
|
||||
term->charsets = term->saved_charsets;
|
||||
break;
|
||||
|
||||
case 't': {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue