mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 22:43:58 +00:00
Handle insert cells when cursor at edge of screen correctly, and do a
full flush before insert.
This commit is contained in:
@ -194,7 +194,7 @@ grid_view_insert_cells(struct grid *gd, u_int px, u_int py, u_int nx, u_int bg)
|
|||||||
|
|
||||||
sx = grid_view_x(gd, gd->sx);
|
sx = grid_view_x(gd, gd->sx);
|
||||||
|
|
||||||
if (px == sx - 1)
|
if (px >= sx - 1)
|
||||||
grid_clear(gd, px, py, 1, 1, bg);
|
grid_clear(gd, px, py, 1, 1, bg);
|
||||||
else
|
else
|
||||||
grid_move_cells(gd, px + nx, px, py, sx - px - nx, bg);
|
grid_move_cells(gd, px + nx, px, py, sx - px - nx, bg);
|
||||||
|
@ -1260,6 +1260,7 @@ screen_write_cell(struct screen_write_ctx *ctx, const struct grid_cell *gc)
|
|||||||
|
|
||||||
/* Create space for character in insert mode. */
|
/* Create space for character in insert mode. */
|
||||||
if (s->mode & MODE_INSERT) {
|
if (s->mode & MODE_INSERT) {
|
||||||
|
screen_write_collect_flush(ctx, 0);
|
||||||
ttyctx.num = width;
|
ttyctx.num = width;
|
||||||
tty_write(tty_cmd_insertcharacter, &ttyctx);
|
tty_write(tty_cmd_insertcharacter, &ttyctx);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user