From eedf059d00365efd763cb9d99835c91d31320956 Mon Sep 17 00:00:00 2001 From: nicm Date: Tue, 31 Mar 2020 06:35:38 +0000 Subject: Detach reply escape sequences from the pane so they work in popups. --- spawn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'spawn.c') diff --git a/spawn.c b/spawn.c index 660ee47d..45243517 100644 --- a/spawn.c +++ b/spawn.c @@ -256,7 +256,7 @@ spawn_pane(struct spawn_context *sc, char **cause) window_pane_reset_mode_all(sc->wp0); screen_reinit(&sc->wp0->base); input_free(sc->wp0->ictx); - sc->wp0->ictx = input_init(sc->wp0); + sc->wp0->ictx = NULL; new_wp = sc->wp0; new_wp->flags &= ~(PANE_STATUSREADY|PANE_STATUSDRAWN); } else if (sc->lc == NULL) { -- cgit