Add -C and -J to capture pane to escape control sequences and to join wrapped

line, based on a diff from George Nachman.
This commit is contained in:
Nicholas Marriott
2013-02-21 09:35:01 +00:00
parent cb6f36655e
commit b8b5631d9d
5 changed files with 65 additions and 22 deletions

View File

@ -234,5 +234,5 @@ grid_view_string_cells(struct grid *gd, u_int px, u_int py, u_int nx)
px = grid_view_x(gd, px);
py = grid_view_y(gd, py);
return (grid_string_cells(gd, px, py, nx, NULL, 0));
return (grid_string_cells(gd, px, py, nx, NULL, 0, 0));
}