mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-16 05:34:00 -04:00
vt: implement C0::FF - processed in the same way as C0::LF
This commit is contained in:
parent
4849a16f37
commit
7f7ab00e11
2 changed files with 3 additions and 0 deletions
|
|
@ -23,6 +23,7 @@
|
||||||
whether the cursor should blink or not by default. Note that
|
whether the cursor should blink or not by default. Note that
|
||||||
applications can override this.
|
applications can override this.
|
||||||
* Multi-seat support
|
* Multi-seat support
|
||||||
|
* Implemented `C0::FF` (form feed)
|
||||||
|
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
||||||
2
vt.c
2
vt.c
|
|
@ -148,8 +148,10 @@ action_execute(struct terminal *term, uint8_t c)
|
||||||
|
|
||||||
case '\n':
|
case '\n':
|
||||||
case '\v':
|
case '\v':
|
||||||
|
case '\f':
|
||||||
/* LF - \n - line feed */
|
/* LF - \n - line feed */
|
||||||
/* VT - \v - vertical tab */
|
/* VT - \v - vertical tab */
|
||||||
|
/* FF - \f - form feed */
|
||||||
term_linefeed(term);
|
term_linefeed(term);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue