mirror of
https://github.com/tmux/tmux.git
synced 2024-12-13 18:38:48 +00:00
back-to-indentation fixes, from Anindya Mukherjee.
This commit is contained in:
parent
788f56b40a
commit
1ee231956c
@ -371,19 +371,26 @@ void
|
|||||||
grid_reader_cursor_back_to_indentation(struct grid_reader *gr)
|
grid_reader_cursor_back_to_indentation(struct grid_reader *gr)
|
||||||
{
|
{
|
||||||
struct grid_cell gc;
|
struct grid_cell gc;
|
||||||
u_int px, py, xx, yy;
|
u_int px, py, xx, yy, oldx, oldy;
|
||||||
|
|
||||||
yy = gr->gd->hsize + gr->gd->sy - 1;
|
yy = gr->gd->hsize + gr->gd->sy - 1;
|
||||||
|
oldx = gr->cx;
|
||||||
|
oldy = gr->cy;
|
||||||
grid_reader_cursor_start_of_line(gr, 1);
|
grid_reader_cursor_start_of_line(gr, 1);
|
||||||
|
|
||||||
for (py = gr->cy; py <= yy; py++) {
|
for (py = gr->cy; py <= yy; py++) {
|
||||||
xx = grid_line_length(gr->gd, py);
|
xx = grid_line_length(gr->gd, py);
|
||||||
for (px = 0; px < xx; px++) {
|
for (px = 0; px < xx; px++) {
|
||||||
grid_get_cell(gr->gd, px, py, &gc);
|
grid_get_cell(gr->gd, px, py, &gc);
|
||||||
if (gc.data.size != 1 || *gc.data.data != ' ')
|
if (gc.data.size != 1 || *gc.data.data != ' ') {
|
||||||
break;
|
gr->cx = px;
|
||||||
|
gr->cy = py;
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (~grid_get_line(gr->gd, py)->flags & GRID_LINE_WRAPPED)
|
if (~grid_get_line(gr->gd, py)->flags & GRID_LINE_WRAPPED)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
gr->cx = oldx;
|
||||||
|
gr->cy = oldy;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user