From 36bc41fe4239965655a266527b219a338f98fd16 Mon Sep 17 00:00:00 2001 From: edyfox Date: Wed, 23 Aug 2006 07:44:30 +0000 Subject: [PATCH] Patch 7.0.066 Problem: After the popup menu for Insert mode completion overlaps the tab pages line it is not completely removed. Solution: Redraw the tab pages line after removing the popup menu. (Ori Avtalion) Files: src/popupmnu.c git-svn-id: https://vim.svn.sourceforge.net/svnroot/vim/vim7@78 2a77ed30-b011-0410-a7ad-c7884a0aa172 --- src/popupmnu.c | 3 +++ src/version.c | 2 ++ 2 files changed, 5 insertions(+) diff --git a/src/popupmnu.c b/src/popupmnu.c index 21dfc850..f280ff25 100644 --- a/src/popupmnu.c +++ b/src/popupmnu.c @@ -552,6 +552,9 @@ pum_undisplay() { pum_array = NULL; redraw_all_later(SOME_VALID); +#ifdef FEAT_WINDOWS + redraw_tabline = TRUE; +#endif status_redraw_all(); } diff --git a/src/version.c b/src/version.c index 1f97a51a..3c2d9a32 100644 --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 66, +/**/ 65, /**/ 64, -- 2.11.4.GIT