commit | 90f3e7ac56056ffad50bac9d4497b5830c37ab26 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Aug 01 22:40:44 2019 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Aug 01 22:40:44 2019 +0200 |
tree | 5a787144818c26a791d8a0c5cfa5969483b67e29 | |
parent | f4fd7ecbc025e8022c3fbfe52bc512b907cb5459 [diff] [blame] |
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.
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 57c98ae..f79f054 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c
@@ -3172,6 +3172,10 @@ #ifdef FEAT_TITLE maketitle(); #endif +#ifdef FEAT_TEXT_PROP + if (popup_is_popup(curwin) && curwin->w_p_pvw) + popup_set_title(curwin); +#endif } #ifdef FEAT_DIFF