0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

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.
This commit is contained in:
Bram Moolenaar
2019-08-01 22:40:44 +02:00
parent f4fd7ecbc0
commit 90f3e7ac56
10 changed files with 66 additions and 4 deletions

View File

@@ -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
}