|
Karsten Hopp |
ea49b4 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
ea49b4 |
Subject: Patch 7.4.383
|
|
Karsten Hopp |
ea49b4 |
Fcc: outbox
|
|
Karsten Hopp |
ea49b4 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
ea49b4 |
Mime-Version: 1.0
|
|
Karsten Hopp |
ea49b4 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
ea49b4 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
ea49b4 |
------------
|
|
Karsten Hopp |
ea49b4 |
|
|
Karsten Hopp |
ea49b4 |
Patch 7.4.383
|
|
Karsten Hopp |
ea49b4 |
Problem: Bad interaction between preview window and omnifunc.
|
|
Karsten Hopp |
ea49b4 |
Solution: Avoid redrawing the status line. (Hirohito Higashi)
|
|
Karsten Hopp |
ea49b4 |
Files: src/popupmnu.c
|
|
Karsten Hopp |
ea49b4 |
|
|
Karsten Hopp |
ea49b4 |
|
|
Karsten Hopp |
ea49b4 |
*** ../vim-7.4.382/src/popupmnu.c 2014-07-09 19:58:21.111647328 +0200
|
|
Karsten Hopp |
ea49b4 |
--- src/popupmnu.c 2014-07-23 20:56:17.131772989 +0200
|
|
Karsten Hopp |
ea49b4 |
***************
|
|
Karsten Hopp |
ea49b4 |
*** 643,648 ****
|
|
Karsten Hopp |
ea49b4 |
--- 643,654 ----
|
|
Karsten Hopp |
ea49b4 |
|
|
Karsten Hopp |
ea49b4 |
if (curwin != curwin_save && win_valid(curwin_save))
|
|
Karsten Hopp |
ea49b4 |
{
|
|
Karsten Hopp |
ea49b4 |
+ /* When the first completion is done and the preview
|
|
Karsten Hopp |
ea49b4 |
+ * window is not resized, skip the preview window's
|
|
Karsten Hopp |
ea49b4 |
+ * status line redrawing. */
|
|
Karsten Hopp |
ea49b4 |
+ if (ins_compl_active() && !resized)
|
|
Karsten Hopp |
ea49b4 |
+ curwin->w_redr_status = FALSE;
|
|
Karsten Hopp |
ea49b4 |
+
|
|
Karsten Hopp |
ea49b4 |
/* Return cursor to where we were */
|
|
Karsten Hopp |
ea49b4 |
validate_cursor();
|
|
Karsten Hopp |
ea49b4 |
redraw_later(SOME_VALID);
|
|
Karsten Hopp |
ea49b4 |
*** ../vim-7.4.382/src/version.c 2014-07-23 20:41:09.895779510 +0200
|
|
Karsten Hopp |
ea49b4 |
--- src/version.c 2014-07-23 20:58:12.079772163 +0200
|
|
Karsten Hopp |
ea49b4 |
***************
|
|
Karsten Hopp |
ea49b4 |
*** 736,737 ****
|
|
Karsten Hopp |
ea49b4 |
--- 736,739 ----
|
|
Karsten Hopp |
ea49b4 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
ea49b4 |
+ /**/
|
|
Karsten Hopp |
ea49b4 |
+ 383,
|
|
Karsten Hopp |
ea49b4 |
/**/
|
|
Karsten Hopp |
ea49b4 |
|
|
Karsten Hopp |
ea49b4 |
--
|
|
Karsten Hopp |
ea49b4 |
ARTHUR: ... and I am your king ....
|
|
Karsten Hopp |
ea49b4 |
OLD WOMAN: Ooooh! I didn't know we had a king. I thought we were an
|
|
Karsten Hopp |
ea49b4 |
autonomous collective ...
|
|
Karsten Hopp |
ea49b4 |
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
|
|
Karsten Hopp |
ea49b4 |
|
|
Karsten Hopp |
ea49b4 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
ea49b4 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
ea49b4 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
ea49b4 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|