From 3c01c4a02897163996639f6f2604c68eab2bd18b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 1 Feb 2020 23:04:24 +0100 Subject: patch 8.2.0194: some commands can cause problems in terminal popup Problem: Some commands can cause problems in terminal popup. Solution: Disallow more commands. --- src/arglist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/arglist.c') diff --git a/src/arglist.c b/src/arglist.c index 942da86c22..ad404d8ae9 100644 --- a/src/arglist.c +++ b/src/arglist.c @@ -638,7 +638,7 @@ do_argfile(exarg_T *eap, int argn) char_u *p; int old_arg_idx = curwin->w_arg_idx; - if (ERROR_IF_POPUP_WINDOW) + if (ERROR_IF_ANY_POPUP_WINDOW) return; if (argn < 0 || argn >= ARGCOUNT) { -- cgit v1.2.3