Hi James,

not a solution but...

On Wed, 2 Aug 2006 09:55:40 +0800
"James Hales" <[EMAIL PROTECTED]> wrote:

> Hi,
> 
> When I maximize Gvim in Gnome, the status line is partially hidden by
> the gnome panel, which is really annoying. This is because of how Vim
> resizes itself, i.e. it is constrained to being resized one character
> size at a time. When Gvim is maximized, it is half a character too
> high, so that extra half character, half of the status line, is hidden
> beneath the gnome panel.
> 
> Is there any way to alleviate this problem?
> 
> Thanks very much,
> James Hales

size the window to how you think maximised should look
:set lines?     (eg 100)
:set columns?   (eg 195)

then set a mapping in your .vimrc

nnoremap <leader>max :set lines=100<cr>:set columns=195<cr>
(this works but would be far neater in a function)

then when you want to 'maximise':  \max


cheers,


--
Mark

Reply via email to