Change default to not clear on resize

This commit is contained in:
Chris Toomey 2013-01-26 13:07:03 -05:00
parent 60bb1622d4
commit 3e4a0e50e2
2 changed files with 6 additions and 4 deletions

View File

@ -284,11 +284,13 @@ Default: 0
3.7 g:VtrClearOnResize~
Send the |VtrClearSequence| after resizing the runner via the
|VtrResizeRunner| command.
|VtrResizeRunner| command. This option is turned off by default as
most often a resize is used to better see the content currently in
the runner pane.
let g:VtrClearOnResize = 0
let g:VtrClearOnResize = 1
Default: 1
Default: 0
------------------------------------------------------------------------------
*VtrClearOnReorient*

View File

@ -339,7 +339,7 @@ function! s:InitializeVariables()
call s:InitVariable("g:VtrClearBeforeSend", 1)
call s:InitVariable("g:VtrPrompt", "Command to run: ")
call s:InitVariable("g:VtrUseVtrMaps", 0)
call s:InitVariable("g:VtrClearOnResize", 1)
call s:InitVariable("g:VtrClearOnResize", 0)
call s:InitVariable("g:VtrClearOnReorient", 1)
call s:InitVariable("g:VtrClearOnReattach", 1)
call s:InitVariable("g:VtrDetachedName", "VTR_Pane")