From 90f3e7ac56056ffad50bac9d4497b5830c37ab26 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 1 Aug 2019 22:40:44 +0200 Subject: patch 8.1.1789: cannot see file name of preview popup window Problem: Cannot see file name of preview popup window. Solution: Add the file name as the title. --- src/ex_cmds.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/ex_cmds.c') diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 57c98ae929..f79f054ec5 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -3171,6 +3171,10 @@ do_ecmd( #ifdef FEAT_TITLE maketitle(); +#endif +#ifdef FEAT_TEXT_PROP + if (popup_is_popup(curwin) && curwin->w_p_pvw) + popup_set_title(curwin); #endif } -- cgit v1.2.3