0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 8.2.0367: can use :pedit in a popup window

Problem:    Can use :pedit in a popup window.
Solution:   Disallow it.
This commit is contained in:
Bram Moolenaar
2020-03-09 16:40:41 +01:00
parent 2e09634a78
commit 3a2505cc18
3 changed files with 6 additions and 0 deletions

View File

@@ -7886,6 +7886,9 @@ ex_pedit(exarg_T *eap)
{ {
win_T *curwin_save = curwin; win_T *curwin_save = curwin;
if (ERROR_IF_ANY_POPUP_WINDOW)
return;
// Open the preview window or popup and make it the current window. // Open the preview window or popup and make it the current window.
g_do_tagpreview = p_pvh; g_do_tagpreview = p_pvh;
prepare_tagpreview(TRUE, TRUE, FALSE); prepare_tagpreview(TRUE, TRUE, FALSE);

View File

@@ -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, "tabnext")', 'E994:')
call assert_fails('call win_execute(winid, "next")', '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, "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, "buf")', 'E994:')
call assert_fails('call win_execute(winid, "bnext")', 'E994:') call assert_fails('call win_execute(winid, "bnext")', 'E994:')
call assert_fails('call win_execute(winid, "bprev")', 'E994:') call assert_fails('call win_execute(winid, "bprev")', 'E994:')

View File

@@ -738,6 +738,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
367,
/**/ /**/
366, 366,
/**/ /**/