diff src/ex_cmds.c @ 13302:b5806be0b36d v8.0.1525

patch 8.0.1525: using :wqa exits even if a job runs in a terminal window commit https://github.com/vim/vim/commit/7a76092a51fc5446426a4bfd9eb6503ec61bf9e9 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 19 23:10:02 2018 +0100 patch 8.0.1525: using :wqa exits even if a job runs in a terminal window Problem: Using :wqa exits even if a job runs in a terminal window. (Jason Felice) Solution: Check if a terminal has a running job. (closes #2654)
author Christian Brabandt <cb@256bit.org>
date Mon, 19 Feb 2018 23:15:05 +0100
parents 6958e700a458
children 81c348d40312
line wrap: on
line diff
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -3428,6 +3428,14 @@ do_wqall(exarg_T *eap)
 
     FOR_ALL_BUFFERS(buf)
     {
+#ifdef FEAT_TERMINAL
+	if (exiting && term_job_running(buf->b_term))
+	{
+	    no_write_message_nobang(buf);
+	    ++error;
+	}
+	else
+#endif
 	if (bufIsChanged(buf) && !bt_dontwrite(buf))
 	{
 	    /*