mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-07 04:06:07 -05: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
|
||||
applications can override this.
|
||||
* Multi-seat support
|
||||
* Implemented `C0::FF` (form feed)
|
||||
|
||||
|
||||
### Changed
|
||||
|
|
|
|||
2
vt.c
2
vt.c
|
|
@ -148,8 +148,10 @@ action_execute(struct terminal *term, uint8_t c)
|
|||
|
||||
case '\n':
|
||||
case '\v':
|
||||
case '\f':
|
||||
/* LF - \n - line feed */
|
||||
/* VT - \v - vertical tab */
|
||||
/* FF - \f - form feed */
|
||||
term_linefeed(term);
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue