# HG changeset patch # User Christian Brabandt # Date 1501336804 -7200 # Node ID 6bfcedcc0262512204a5fa9373df07709e04cc05 # Parent b0a9c124b7376d2c0ad49329c80a4515d2f66304 patch 8.0.0801: terminal window title says "running" after job exits commit https://github.com/vim/vim/commit/1e8340bbbfb26d170a3f8b135dcb874e90a74e0b Author: Bram Moolenaar Date: Sat Jul 29 15:53:39 2017 +0200 patch 8.0.0801: terminal window title says "running" after job exits Problem: The terminal window title sometimes still says "running" even though the job has finished. Solution: Also consider the job finished when the channel has been closed. diff --git a/src/terminal.c b/src/terminal.c --- a/src/terminal.c +++ b/src/terminal.c @@ -491,7 +491,11 @@ term_convert_key(int c, char *buf) static int term_job_running(term_T *term) { - return term->tl_job != NULL && term->tl_job->jv_status == JOB_STARTED; + /* Also consider the job finished when the channel is closed, to avoid a + * race condition when updating the title. */ + return term->tl_job != NULL + && term->tl_job->jv_status == JOB_STARTED + && channel_is_open(term->tl_job->jv_channel); } /* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 801, +/**/ 800, /**/ 799,