Merge pull request #9 from pkoch/master

Add option to close gundo on revert.
This commit is contained in:
Steve Losh 2011-05-09 15:03:11 -07:00
commit 994ee7d948

View File

@ -66,6 +66,9 @@ endif"}}}
if !exists("g:gundo_map_move_newer")"{{{
let g:gundo_map_move_newer = 'k'
endif"}}}
if !exists("g:gundo_close_on_revert")"{{{
let g:gundo_close_on_revert = 1
endif"}}}
"}}}
@ -884,6 +887,9 @@ def GundoRevert():
vim.command('GundoRenderGraph')
_goto_window_for_buffer(back)
if int(vim.eval('g:gundo_close_on_revert')):
vim.command('GundoToggle')
GundoRevert()
ENDPYTHON
endfunction"}}}