Home
last modified time | relevance | path

Searched refs:newcols (Results 1 – 1 of 1) sorted by relevance

/vim-8.2.3635/src/
H A Dterminal.c3717 int newrows, newcols; in term_update_window() local
3747 newcols = 99999; in term_update_window()
3758 newcols = MIN(newcols, wwp->w_width); in term_update_window()
3763 if (newrows == 99999 || newcols == 99999) in term_update_window()
3766 newcols = cols == 0 ? newcols : minsize ? MAX(cols, newcols) : cols; in term_update_window()
3770 if (newrows == 0 || newcols == 0) in term_update_window()
3773 if (term->tl_rows != newrows || term->tl_cols != newcols) in term_update_window()
3776 vterm_set_size(vterm, newrows, newcols); in term_update_window()
3779 term_report_winsize(term, newrows, newcols); in term_update_window()