0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -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;
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);