Re: customize my initial window size

2009-12-11 Thread kenorb
And what was the command to change window position to 0x0? -- You received this message from the vim_use maillist. For more information, visit http://www.vim.org/maillist.php

Re: customize my initial window size

2009-11-15 Thread wik
`set lines=99 columns=100` works for me in gVim under Ubuntu Karmic. You might be also interested in this solution: http://vim.wikia.com/wiki/Restore_screen_size_and_position See Version 1. Thanks. On Nov 14, 6:24 am, Jason jason.lillywh...@gmail.com wrote: I would like to set the initial

Re: customize my initial window size

2009-11-14 Thread Matt Wozniski
On Fri, Nov 13, 2009 at 11:24 PM, Jason wrote: I would like to set the initial window size and position of Gvim in Ubuntu. In my .vimrc file, I have: if has(gui_running)   GUI is running or is about to start.   Maximize gvim window.  set lines=99 columns=100 This should work; I'm not sure

customize my initial window size

2009-11-13 Thread Jason
I would like to set the initial window size and position of Gvim in Ubuntu. In my .vimrc file, I have: if has(gui_running) GUI is running or is about to start. Maximize gvim window. set lines=99 columns=100 else This is console Vim. if exists(+lines) set lines=99 endif if

Re: customize my initial window size

2009-11-13 Thread bill lam
On Fri, 13 Nov 2009, Jason wrote: I would like to set the initial window size and position of Gvim in Ubuntu. In my .vimrc file, I have: if has(gui_running) GUI is running or is about to start. Maximize gvim window. set lines=99 columns=100 else This is console Vim. if