mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-22 05:33:45 -04:00
vt: implement (untested!) smam and rmam (auto margins)
Default is auto-margins enabled (scroll when cursor reaches right margin).
This commit is contained in:
parent
90dadfcc22
commit
3c67628c57
3 changed files with 4 additions and 3 deletions
4
csi.c
4
csi.c
|
|
@ -585,7 +585,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
break;
|
||||
|
||||
case 7:
|
||||
LOG_WARN("unimplemented: smam (automatic margins)");
|
||||
term->auto_margin = true;
|
||||
break;
|
||||
|
||||
case 12:
|
||||
|
|
@ -655,7 +655,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
break;
|
||||
|
||||
case 7:
|
||||
LOG_WARN("unimplemented: smam (automatic margins)");
|
||||
term->auto_margin = false;
|
||||
break;
|
||||
|
||||
case 12:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue