mirror of
https://github.com/tmate-io/tmate.git
synced 2025-02-02 11:29:55 +01:00
Use screen_reinit for respawn-pane to keep history and call input_init
for respawn-window to break out of waiting for DCS/OSC to finish.
This commit is contained in:
parent
5e90476b25
commit
a70379d8f9
@ -68,10 +68,7 @@ cmd_respawn_pane_exec(struct cmd *self, struct cmd_ctx *ctx)
|
||||
server_fill_environ(s, &env);
|
||||
|
||||
window_pane_reset_mode(wp);
|
||||
screen_free(&wp->base);
|
||||
hlimit = options_get_number(&s->options, "history-limit");
|
||||
screen_init(&wp->base, wp->sx, wp->sy, hlimit);
|
||||
wp->screen = &wp->base;
|
||||
screen_reinit(&wp->base);
|
||||
input_init(wp);
|
||||
|
||||
if (args->argc != 0)
|
||||
|
@ -87,7 +87,9 @@ cmd_respawn_window_exec(struct cmd *self, struct cmd_ctx *ctx)
|
||||
return (-1);
|
||||
}
|
||||
layout_init(w);
|
||||
window_pane_reset_mode(wp);
|
||||
screen_reinit(&wp->base);
|
||||
input_init(wp);
|
||||
window_set_active_pane(w, wp);
|
||||
|
||||
recalculate_sizes();
|
||||
|
Loading…
Reference in New Issue
Block a user