mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Detach reply escape sequences from the pane so they work in popups.
This commit is contained in:
3
popup.c
3
popup.c
@ -443,8 +443,6 @@ popup_display(int flags, struct cmdq_item *item, u_int px, u_int py, u_int sx,
|
||||
popup_write_screen(c, pd);
|
||||
|
||||
if (shellcmd != NULL) {
|
||||
pd->ictx = input_init(NULL);
|
||||
|
||||
if (fs != NULL)
|
||||
s = fs->s;
|
||||
else
|
||||
@ -455,6 +453,7 @@ popup_display(int flags, struct cmdq_item *item, u_int px, u_int py, u_int sx,
|
||||
pd->job = job_run(shellcmd, s, cwd, popup_job_update_cb,
|
||||
popup_job_complete_cb, NULL, pd, jobflags, pd->sx - 2,
|
||||
pd->sy - 2);
|
||||
pd->ictx = input_init(NULL, job_get_event(pd->job));
|
||||
}
|
||||
|
||||
server_client_set_overlay(c, 0, popup_check_cb, popup_mode_cb,
|
||||
|
Reference in New Issue
Block a user