]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.383 v7.4.383
authorBram Moolenaar <Bram@vim.org>
Wed, 23 Jul 2014 19:10:43 +0000 (21:10 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 23 Jul 2014 19:10:43 +0000 (21:10 +0200)
Problem:    Bad interaction between preview window and omnifunc.
Solution:   Avoid redrawing the status line. (Hirohito Higashi)

src/popupmnu.c
src/version.c

index b970158b274e4c4d22a157feecf0b1abb14ad7c6..68ee2d5623a5721f99b216d87ac686e6d00013a8 100644 (file)
@@ -643,6 +643,12 @@ pum_set_selected(n, repeat)
 
                    if (curwin != curwin_save && win_valid(curwin_save))
                    {
+                       /* When the first completion is done and the preview
+                        * window is not resized, skip the preview window's
+                        * status line redrawing. */
+                       if (ins_compl_active() && !resized)
+                           curwin->w_redr_status = FALSE;
+
                        /* Return cursor to where we were */
                        validate_cursor();
                        redraw_later(SOME_VALID);
index c0710733798197328f8cbda649ef94ed75fd1358..663bdfd12c048aacddc46ecb35fe6d1a586cd4c2 100644 (file)
@@ -734,6 +734,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    383,
 /**/
     382,
 /**/