|
|
073263 |
To: vim_dev@googlegroups.com
|
|
|
073263 |
Subject: Patch 7.4.361
|
|
|
073263 |
Fcc: outbox
|
|
|
073263 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
073263 |
Mime-Version: 1.0
|
|
|
073263 |
Content-Type: text/plain; charset=UTF-8
|
|
|
073263 |
Content-Transfer-Encoding: 8bit
|
|
|
073263 |
------------
|
|
|
073263 |
|
|
|
073263 |
Patch 7.4.361
|
|
|
073263 |
Problem: Lots of flickering when filling the preview window for 'omnifunc'.
|
|
|
073263 |
Solution: Disable redrawing. (Hirohito Higashi)
|
|
|
073263 |
Files: src/popupmnu.c
|
|
|
073263 |
|
|
|
073263 |
|
|
|
073263 |
*** ../vim-7.4.360/src/popupmnu.c 2013-11-06 04:04:29.000000000 +0100
|
|
|
073263 |
--- src/popupmnu.c 2014-07-09 19:56:25.663649674 +0200
|
|
|
073263 |
***************
|
|
|
073263 |
*** 567,573 ****
|
|
|
073263 |
--- 567,575 ----
|
|
|
073263 |
g_do_tagpreview = 3;
|
|
|
073263 |
if (p_pvh > 0 && p_pvh < g_do_tagpreview)
|
|
|
073263 |
g_do_tagpreview = p_pvh;
|
|
|
073263 |
+ ++RedrawingDisabled;
|
|
|
073263 |
resized = prepare_tagpreview(FALSE);
|
|
|
073263 |
+ --RedrawingDisabled;
|
|
|
073263 |
g_do_tagpreview = 0;
|
|
|
073263 |
|
|
|
073263 |
if (curwin->w_p_pvw)
|
|
|
073263 |
*** ../vim-7.4.360/src/version.c 2014-07-09 19:32:30.939678834 +0200
|
|
|
073263 |
--- src/version.c 2014-07-09 19:55:48.995650419 +0200
|
|
|
073263 |
***************
|
|
|
073263 |
*** 736,737 ****
|
|
|
073263 |
--- 736,739 ----
|
|
|
073263 |
{ /* Add new patch number below this line */
|
|
|
073263 |
+ /**/
|
|
|
073263 |
+ 361,
|
|
|
073263 |
/**/
|
|
|
073263 |
|
|
|
073263 |
--
|
|
|
073263 |
Lose weight, NEVER Diet again with
|
|
|
073263 |
The "Invisible Weight Loss Patch"
|
|
|
073263 |
(spam e-mail)
|
|
|
073263 |
|
|
|
073263 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
073263 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
073263 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
073263 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|