Comment #1 on issue 21 by [email protected]: System-calls interferes
with &lines
http://code.google.com/p/vim/issues/detail?id=21
If you don't want to use the .gvimrc, use the GUIEnter autocommand.
But anyhow, here is a that prevents changing the rows too early:
diff --git a/src/ui.c b/src/ui.c
--- a/src/ui.c
+++ b/src/ui.c
@@ -298,7 +298,10 @@
int retval;
#ifdef FEAT_GUI
- if (gui.in_use)
+ if (gui.starting)
+ /* check later */
+ return OK;
+ else if (gui.in_use)
retval = gui_get_shellsize();
else
#endif
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php