diff options
author | nicm <nicm> | 2020-04-18 06:20:50 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-04-18 06:20:50 +0000 |
commit | 1d2bd864f25a58ab85a6f9f0a448f3a69d8491cd (patch) | |
tree | 471efe39b17d06879738baa64fbb23f0bff51550 | |
parent | d94bdf7420eb6d0ef88783a35db2c592a3fccec0 (diff) | |
download | rtmux-1d2bd864f25a58ab85a6f9f0a448f3a69d8491cd.tar.gz rtmux-1d2bd864f25a58ab85a6f9f0a448f3a69d8491cd.tar.bz2 rtmux-1d2bd864f25a58ab85a6f9f0a448f3a69d8491cd.zip |
Add a flag to protect against nested syncs and add some extra logging to
redrawing.
-rw-r--r-- | screen-redraw.c | 13 | ||||
-rw-r--r-- | server-client.c | 1 | ||||
-rw-r--r-- | tmux.h | 1 | ||||
-rw-r--r-- | tty.c | 8 |
4 files changed, 18 insertions, 5 deletions
diff --git a/screen-redraw.c b/screen-redraw.c index c510fb68..c9e70590 100644 --- a/screen-redraw.c +++ b/screen-redraw.c @@ -438,17 +438,24 @@ screen_redraw_screen(struct client *c) tty_sync_start(&c->tty); if (flags & (CLIENT_REDRAWWINDOW|CLIENT_REDRAWBORDERS)) { + log_debug("%s: redrawing borders", c->name); if (ctx.pane_status != PANE_STATUS_OFF) screen_redraw_draw_pane_status(&ctx); screen_redraw_draw_borders(&ctx); } - if (flags & CLIENT_REDRAWWINDOW) + if (flags & CLIENT_REDRAWWINDOW) { + log_debug("%s: redrawing panes", c->name); screen_redraw_draw_panes(&ctx); + } if (ctx.statuslines != 0 && - (flags & (CLIENT_REDRAWSTATUS|CLIENT_REDRAWSTATUSALWAYS))) + (flags & (CLIENT_REDRAWSTATUS|CLIENT_REDRAWSTATUSALWAYS))) { + log_debug("%s: redrawing status", c->name); screen_redraw_draw_status(&ctx); - if (c->overlay_draw != NULL && (flags & CLIENT_REDRAWOVERLAY)) + } + if (c->overlay_draw != NULL && (flags & CLIENT_REDRAWOVERLAY)) { + log_debug("%s: redrawing overlay", c->name); c->overlay_draw(c, &ctx); + } tty_reset(&c->tty); tty_sync_end(&c->tty); diff --git a/server-client.c b/server-client.c index 8365831f..c74e4dd5 100644 --- a/server-client.c +++ b/server-client.c @@ -1741,6 +1741,7 @@ server_client_check_redraw(struct client *c) */ TAILQ_FOREACH(wp, &c->session->curw->window->panes, entry) { if (wp->flags & PANE_REDRAW) { + log_debug("%s: redrawing pane %%%u", __func__, wp->id); tty_update_mode(tty, tty->mode, NULL); screen_redraw_pane(c, wp); } @@ -1244,6 +1244,7 @@ struct tty { #define TTY_BLOCK 0x80 #define TTY_HAVEDA 0x100 #define TTY_HAVEDSR 0x200 +#define TTY_SYNCING 0x400 int flags; struct tty_term *term; @@ -1438,15 +1438,19 @@ tty_draw_line(struct tty *tty, struct window_pane *wp, struct screen *s, void tty_sync_start(struct tty *tty) { - if (tty_get_flags(tty) & TERM_SYNC) + if ((~tty->flags & TTY_SYNCING) && (tty_get_flags(tty) & TERM_SYNC)) { tty_puts(tty, "\033P=1s\033\\"); + tty->flags |= TTY_SYNCING; + } } void tty_sync_end(struct tty *tty) { - if (tty_get_flags(tty) & TERM_SYNC) + if (tty_get_flags(tty) & TERM_SYNC) { tty_puts(tty, "\033P=2s\033\\"); + tty->flags &= ~TTY_SYNCING; + } } static int |