mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
vt/csi: recognize the reset sequence sent by 'reset'
However, we don't (yet) actually reset the terminal
This commit is contained in:
parent
e944eb85ac
commit
28eef93742
2 changed files with 28 additions and 0 deletions
4
vt.c
4
vt.c
|
|
@ -598,6 +598,10 @@ esc_dispatch(struct terminal *term, uint8_t final)
|
|||
term->vt.attrs = term->vt.saved_attrs;
|
||||
break;
|
||||
|
||||
case 'c':
|
||||
LOG_WARN("unimplemented: reset to initial state");
|
||||
break;
|
||||
|
||||
case 'B': {
|
||||
/* Configure G0-G3 to use ASCII */
|
||||
char param = term->vt.private != 0 ? term->vt.private : '(';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue