summaryrefslogtreecommitdiffstats
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-17 15:08:00 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-17 15:08:00 +0200
commit026587b35c42301bcc2214207346b62ef2efed41 (patch)
tree84d588af919fadcbd6b7c4ee068ae80db63ba914 /src/ex_docmd.c
parent4ad62155a1015751a6645aaecd94b02c94c8934b (diff)
patch 8.1.1870: using :pedit from a help file sets help filetypev8.1.1870
Problem: Using :pedit from a help file sets the preview window to help filetype. (Wang Shidong) Solution: Do not set "keep_help_flag". (closes #3536)
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r--src/ex_docmd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index cea3936a5b..941ad840b6 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -8612,16 +8612,16 @@ ex_pedit(exarg_T *eap)
{
win_T *curwin_save = curwin;
+ // Open the preview window or popup and make it the current window.
g_do_tagpreview = p_pvh;
prepare_tagpreview(TRUE);
- keep_help_flag = bt_help(curwin_save->w_buffer);
+ // Edit the file.
do_exedit(eap, NULL);
- keep_help_flag = FALSE;
if (curwin != curwin_save && win_valid(curwin_save))
{
- /* Return cursor to where we were */
+ // Return cursor to where we were
validate_cursor();
redraw_later(VALID);
win_enter(curwin_save, TRUE);