mirror of
https://github.com/tmux/tmux.git
synced 2025-01-06 07:48:48 +00:00
Always start sync for output in panes that are not the active pane.
This commit is contained in:
parent
117ec1b2e6
commit
4a5182e665
@ -118,7 +118,9 @@ screen_write_initctx(struct screen_write_ctx *ctx, struct tty_ctx *ttyctx,
|
||||
ttyctx->orlower = s->rlower;
|
||||
ttyctx->orupper = s->rupper;
|
||||
|
||||
if (sync && !ctx->sync && ttyctx->wp != NULL) {
|
||||
if (ctx->wp != NULL &&
|
||||
!ctx->sync &&
|
||||
(sync || ctx->wp != ctx->wp->window->active)) {
|
||||
tty_write(tty_cmd_syncstart, ttyctx);
|
||||
ctx->sync = 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user