vte_terminal_get_text_maybe_wrapped's wrap argument is ignored
@behdad
Submitted by Behdad Esfahbod Link to original bug (#353289)
Description
And everyone seems to call it with wrap==TRUE. I think we should change:
if (!vte_line_is_wrappable(terminal, row)) {
to
if (wrap || !vte_line_is_wrappable(terminal, row)) {
and then rethink every caller to see if they should remain TRUE or changed to FALSE (most should become FALSE I guess. We may want to provide new API to export the wrapped version)