|
Karsten Hopp |
4ba41e |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
4ba41e |
Subject: Patch 7.3.807
|
|
Karsten Hopp |
4ba41e |
Fcc: outbox
|
|
Karsten Hopp |
4ba41e |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
4ba41e |
Mime-Version: 1.0
|
|
Karsten Hopp |
4ba41e |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
4ba41e |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
4ba41e |
------------
|
|
Karsten Hopp |
4ba41e |
|
|
Karsten Hopp |
4ba41e |
Patch 7.3.807
|
|
Karsten Hopp |
4ba41e |
Problem: Popup menu does not work properly with the preview window, folds
|
|
Karsten Hopp |
4ba41e |
and 'cursorcolumn'.
|
|
Karsten Hopp |
4ba41e |
Solution: Redraw the popup menu after redrawing windows. (Christian
|
|
Karsten Hopp |
4ba41e |
Brabandt)
|
|
Karsten Hopp |
4ba41e |
Files: src/screen.c
|
|
Karsten Hopp |
4ba41e |
|
|
Karsten Hopp |
4ba41e |
|
|
Karsten Hopp |
4ba41e |
*** ../vim-7.3.806/src/screen.c 2013-01-30 12:31:32.000000000 +0100
|
|
Karsten Hopp |
4ba41e |
--- src/screen.c 2013-02-13 11:59:23.000000000 +0100
|
|
Karsten Hopp |
4ba41e |
***************
|
|
Karsten Hopp |
4ba41e |
*** 548,553 ****
|
|
Karsten Hopp |
4ba41e |
--- 548,558 ----
|
|
Karsten Hopp |
4ba41e |
#if defined(FEAT_SEARCH_EXTRA)
|
|
Karsten Hopp |
4ba41e |
end_search_hl();
|
|
Karsten Hopp |
4ba41e |
#endif
|
|
Karsten Hopp |
4ba41e |
+ #ifdef FEAT_INS_EXPAND
|
|
Karsten Hopp |
4ba41e |
+ /* May need to redraw the popup menu. */
|
|
Karsten Hopp |
4ba41e |
+ if (pum_visible())
|
|
Karsten Hopp |
4ba41e |
+ pum_redraw();
|
|
Karsten Hopp |
4ba41e |
+ #endif
|
|
Karsten Hopp |
4ba41e |
|
|
Karsten Hopp |
4ba41e |
#ifdef FEAT_WINDOWS
|
|
Karsten Hopp |
4ba41e |
/* Reset b_mod_set flags. Going through all windows is probably faster
|
|
Karsten Hopp |
4ba41e |
*** ../vim-7.3.806/src/version.c 2013-02-06 19:58:38.000000000 +0100
|
|
Karsten Hopp |
4ba41e |
--- src/version.c 2013-02-13 12:00:55.000000000 +0100
|
|
Karsten Hopp |
4ba41e |
***************
|
|
Karsten Hopp |
4ba41e |
*** 727,728 ****
|
|
Karsten Hopp |
4ba41e |
--- 727,730 ----
|
|
Karsten Hopp |
4ba41e |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
4ba41e |
+ /**/
|
|
Karsten Hopp |
4ba41e |
+ 807,
|
|
Karsten Hopp |
4ba41e |
/**/
|
|
Karsten Hopp |
4ba41e |
|
|
Karsten Hopp |
4ba41e |
--
|
|
Karsten Hopp |
4ba41e |
A special cleaning ordinance bans housewives from hiding dirt and dust under a
|
|
Karsten Hopp |
4ba41e |
rug in a dwelling.
|
|
Karsten Hopp |
4ba41e |
[real standing law in Pennsylvania, United States of America]
|
|
Karsten Hopp |
4ba41e |
|
|
Karsten Hopp |
4ba41e |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
4ba41e |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
4ba41e |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
4ba41e |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|