• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revisión62716fd61fe94fb9e7f39294dfa9dba4aa06fbf8 (tree)
Tiempo2008-01-05 21:15:52
Autorvimboss
Commitervimboss

Log Message

updated for version 7.1-204

Cambiar Resumen

Diferencia incremental

diff -r 205a26fab116 -r 62716fd61fe9 src/gui_w32.c
--- a/src/gui_w32.c Fri Jan 04 20:25:44 2008 +0000
+++ b/src/gui_w32.c Sat Jan 05 12:15:52 2008 +0000
@@ -4575,11 +4575,15 @@
45754575 SendMessage(beval->balloon, TTM_ADDTOOL, 0, (LPARAM)pti);
45764576 /* Make tooltip appear sooner */
45774577 SendMessage(beval->balloon, TTM_SETDELAYTIME, TTDT_INITIAL, 10);
4578+ /* I've performed some tests and it seems the longest possible life time
4579+ * of tooltip is 30 seconds */
4580+ SendMessage(beval->balloon, TTM_SETDELAYTIME, TTDT_AUTOPOP, 30000);
45784581 /*
45794582 * HACK: force tooltip to appear, because it'll not appear until
45804583 * first mouse move. D*mn M$
4584+ * Amazingly moving (2, 2) and then (-1, -1) the mouse doesn't move.
45814585 */
4582- mouse_event(MOUSEEVENTF_MOVE, 1, 1, 0, 0);
4586+ mouse_event(MOUSEEVENTF_MOVE, 2, 2, 0, 0);
45834587 mouse_event(MOUSEEVENTF_MOVE, (DWORD)-1, (DWORD)-1, 0, 0);
45844588 vim_free(pti);
45854589 }
diff -r 205a26fab116 -r 62716fd61fe9 src/version.c
--- a/src/version.c Fri Jan 04 20:25:44 2008 +0000
+++ b/src/version.c Sat Jan 05 12:15:52 2008 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 204,
671+/**/
670672 203,
671673 /**/
672674 202,
Show on old repository browser