comparison src/ex_docmd.c @ 19621:0d677257e35d v8.2.0367

patch 8.2.0367: can use :pedit in a popup window Commit: https://github.com/vim/vim/commit/3a2505cc183b3c5f4852ae8a945172582fbc650f Author: Bram Moolenaar <Bram@vim.org> Date: Mon Mar 9 16:40:41 2020 +0100 patch 8.2.0367: can use :pedit in a popup window Problem: Can use :pedit in a popup window. Solution: Disallow it.
author Bram Moolenaar <Bram@vim.org>
date Mon, 09 Mar 2020 16:45:04 +0100
parents 3c0de44077cd
children d64f403289db
comparison
equal deleted inserted replaced
19620:ed1c969874cb 19621:0d677257e35d
7884 static void 7884 static void
7885 ex_pedit(exarg_T *eap) 7885 ex_pedit(exarg_T *eap)
7886 { 7886 {
7887 win_T *curwin_save = curwin; 7887 win_T *curwin_save = curwin;
7888 7888
7889 if (ERROR_IF_ANY_POPUP_WINDOW)
7890 return;
7891
7889 // Open the preview window or popup and make it the current window. 7892 // Open the preview window or popup and make it the current window.
7890 g_do_tagpreview = p_pvh; 7893 g_do_tagpreview = p_pvh;
7891 prepare_tagpreview(TRUE, TRUE, FALSE); 7894 prepare_tagpreview(TRUE, TRUE, FALSE);
7892 7895
7893 // Edit the file. 7896 // Edit the file.