diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a26b957..bd172a47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/vt.c b/vt.c index ade6d3a1..cd240ddb 100644 --- a/vt.c +++ b/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;