autocmd!
augroup END
-" Save the current window width so we can restore it when we quit.
+" Save the current window dimensions so we can restore them when we quit.
if ! exists("g:oldcols")
let g:oldcols=&columns
endif
+if ! exists("g:oldlines")
+ let g:oldlines=&lines
+endif
" More GUI options. Add icon and tearoffs.
se go+=i
return g:resizable
endfun "}}}2
-" Grow or shrink the window size.
+" Grow or shrink the window width.
fun! Resize_Columns(op, ...) "{{{2
if a:op == ""
return
exe l:resize
endfun "}}}2
+" Grow or shrink the window height.
+fun! Resize_Lines(op, lines) "{{{2
+ if a:op == ""
+ return
+ endif
+
+ if ! Can_Resize()
+ return
+ endif
+
+ exe "let l:resize=" . &lines . a:op . a:lines
+ if &term =~ '^screen'
+ let l:resize = l:resize + 1
+ endif
+ let l:resize = "se lines=" . l:resize
+
+ exe l:resize
+endfun "}}}2
+
" Set extra columns depending on window status.
fun! Extra_Columns(extra, var, ...) "{{{2
" Vim 6 doesn't have winnr("$"). Determine which windows are open
" Restore window size.
if ! has("gui_running")
au Display VimLeave * if exists("g:oldcols") | call Resize_Columns("-", (&columns - g:oldcols)) | endif
+ au Display VimLeave * if exists("g:oldlines") | call Resize_Lines("-", (&lines - g:oldlines)) | endif
endif
" Map Makefile mode.