Bram Moolenaar wrote:
Tony Mechelynck wrote:
Marius Roets wrote:
Hi everybody,
Can somebody explain the following behaviour to me. In my .vimrc I put
the following:
" --START --
function ResizeEvent()
let &lines = &lines - 1
execute '!echo "resizing "'.&lines . ' >> test.txt'
e
Tony Mechelynck wrote:
> Marius Roets wrote:
> > Hi everybody,
> > Can somebody explain the following behaviour to me. In my .vimrc I put
> > the following:
> > " --START --
> > function ResizeEvent()
> > let &lines = &lines - 1
> > execute '!echo "resizing "'.&lines . ' >> test.t
Marius Roets wrote:
Hi everybody,
Can somebody explain the following behaviour to me. In my .vimrc I put
the following:
" --START --
function ResizeEvent()
let &lines = &lines - 1
execute '!echo "resizing "'.&lines . ' >> test.txt'
endfunction
autocmd VimResized * call ResizeEven
Hi everybody,
Can somebody explain the following behaviour to me. In my .vimrc I put
the following:
" --START --
function ResizeEvent()
let &lines = &lines - 1
execute '!echo "resizing "'.&lines . ' >> test.txt'
endfunction
autocmd VimResized * call ResizeEvent()
" END --