mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-13 05:33:51 -04:00
Merge branch 'text-reflow'
This commit is contained in:
commit
335bf2e5b4
8 changed files with 173 additions and 51 deletions
12
terminal.c
12
terminal.c
|
|
@ -1154,13 +1154,13 @@ term_font_size_adjust(struct terminal *term, double amount)
|
|||
void
|
||||
term_font_size_increase(struct terminal *term)
|
||||
{
|
||||
term_font_size_adjust(term, 1.);
|
||||
term_font_size_adjust(term, 0.5);
|
||||
}
|
||||
|
||||
void
|
||||
term_font_size_decrease(struct terminal *term)
|
||||
{
|
||||
term_font_size_adjust(term, -1.);
|
||||
term_font_size_adjust(term, -0.5);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
@ -1495,6 +1495,14 @@ term_scroll_reverse(struct terminal *term, int rows)
|
|||
term_scroll_reverse_partial(term, term->scroll_region, rows);
|
||||
}
|
||||
|
||||
void
|
||||
term_formfeed(struct terminal *term)
|
||||
{
|
||||
if (term->cursor.point.col > 0)
|
||||
term->grid->cur_row->cells[term->cursor.point.col - 1].attrs.linefeed = 1;
|
||||
term_cursor_left(term, term->cursor.point.col);
|
||||
}
|
||||
|
||||
void
|
||||
term_linefeed(struct terminal *term)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue