From d98c0b63abd7b0e61a383669474abe96044615af Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 2 Feb 2020 15:25:16 +0100 Subject: patch 8.2.0196: blocking commands for a finished job in a popup window Problem: Blocking commands for a finished job in a popup window. Solution: Do not block commands if the job has finished. Adjust test. --- src/popupwin.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/popupwin.c') diff --git a/src/popupwin.c b/src/popupwin.c index d4f6026f9..714f457fe 100644 --- a/src/popupwin.c +++ b/src/popupwin.c @@ -2863,10 +2863,15 @@ error_if_popup_window(int also_with_term UNUSED) } # if defined(FEAT_TERMINAL) || defined(PROTO) +/* + * Return TRUE if the current window is running a terminal in a popup window. + * Return FALSE when the job has ended. + */ int error_if_term_popup_window() { - if (WIN_IS_POPUP(curwin) && curbuf->b_term != NULL) + if (WIN_IS_POPUP(curwin) && curbuf->b_term != NULL + && term_job_running(curbuf->b_term)) { emsg(_("E899: Not allowed for a terminal in a popup window")); return TRUE; -- cgit v1.2.1