Hi Bram,
Attach a patch.
Suppress preview window's status line redrawing when popupmenu opened for
completion with preview window.
What do you think? worth to consider?
--
Best regards,
Hirohito Higashi
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
diff -r f37b2f0479ca src/popupmnu.c
--- a/src/popupmnu.c Wed Jul 16 15:18:27 2014 +0200
+++ b/src/popupmnu.c Wed Jul 16 23:18:54 2014 +0900
@@ -574,6 +574,10 @@
if (curwin->w_p_pvw)
{
+ /* If there was already a preview window open, skip status line
+ * redrawing */
+ if (!resized)
+ curwin->w_redr_status = FALSE;
if (curbuf->b_fname == NULL
&& curbuf->b_p_bt[0] == 'n' && curbuf->b_p_bt[2] == 'f'
&& curbuf->b_p_bh[0] == 'w')