From 3a2505cc183b3c5f4852ae8a945172582fbc650f Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 9 Mar 2020 16:40:41 +0100 Subject: [PATCH] patch 8.2.0367: can use :pedit in a popup window Problem: Can use :pedit in a popup window. Solution: Disallow it. --- src/ex_docmd.c | 3 +++ src/testdir/test_popupwin.vim | 1 + src/version.c | 2 ++ 3 files changed, 6 insertions(+) diff --git a/src/ex_docmd.c b/src/ex_docmd.c index f2fb646980..58ea7c8638 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -7886,6 +7886,9 @@ ex_pedit(exarg_T *eap) { win_T *curwin_save = curwin; + if (ERROR_IF_ANY_POPUP_WINDOW) + return; + // Open the preview window or popup and make it the current window. g_do_tagpreview = p_pvh; prepare_tagpreview(TRUE, TRUE, FALSE); diff --git a/src/testdir/test_popupwin.vim b/src/testdir/test_popupwin.vim index d89824df0d..9cd6e3229a 100644 --- a/src/testdir/test_popupwin.vim +++ b/src/testdir/test_popupwin.vim @@ -926,6 +926,7 @@ func Test_win_execute_not_allowed() call assert_fails('call win_execute(winid, "tabnext")', 'E994:') call assert_fails('call win_execute(winid, "next")', 'E994:') call assert_fails('call win_execute(winid, "rewind")', 'E994:') + call assert_fails('call win_execute(winid, "pedit filename")', 'E994:') call assert_fails('call win_execute(winid, "buf")', 'E994:') call assert_fails('call win_execute(winid, "bnext")', 'E994:') call assert_fails('call win_execute(winid, "bprev")', 'E994:') diff --git a/src/version.c b/src/version.c index 18e0c1433d..0c0cebed26 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 367, /**/ 366, /**/ -- 2.47.3