mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-07 04:06:07 -05:00
Revert "term: new function: term_autowrap()"
This reverts commit 686405b703.
This commit is contained in:
parent
04cbee7593
commit
cf75528e86
2 changed files with 0 additions and 16 deletions
15
terminal.c
15
terminal.c
|
|
@ -1192,21 +1192,6 @@ term_reverse_index(struct terminal *term)
|
|||
term_cursor_up(term, 1);
|
||||
}
|
||||
|
||||
bool
|
||||
term_autowrap(struct terminal *term)
|
||||
{
|
||||
if (unlikely(term->cursor.lcf) && term->auto_margin) {
|
||||
if (term->cursor.point.row == term->scroll_region.end - 1) {
|
||||
term_scroll(term, 1);
|
||||
term_cursor_to(term, term->cursor.point.row, 0);
|
||||
} else
|
||||
term_cursor_to(term, term->cursor.point.row + 1, 0);
|
||||
|
||||
return true;
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
|
||||
void
|
||||
term_reset_view(struct terminal *term)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -360,7 +360,6 @@ void term_scroll_reverse_partial(
|
|||
|
||||
void term_linefeed(struct terminal *term);
|
||||
void term_reverse_index(struct terminal *term);
|
||||
bool term_autowrap(struct terminal *term);
|
||||
|
||||
void term_restore_cursor(struct terminal *term);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue