added public show/hide methods and matched toggle open/close method

This commit is contained in:
Sam Simmons 2012-04-13 00:42:46 -05:00
parent 7198c51b5d
commit e2dd66b729

View File

@ -322,11 +322,17 @@ function! s:GundoToggle()"{{{
endfunction"}}}
function! s:GundoShow()"{{{
call s:GundoOpen()
if !s:GundoIsVisible()
let g:gundo_target_n = bufnr('')
let g:gundo_target_f = @%
call s:GundoOpen()
endif
endfunction"}}}
function! s:GundoHide()"{{{
call s:GundoClose()
if s:GundoIsVisible()
call s:GundoClose()
endif
endfunction"}}}
"}}}
@ -442,6 +448,14 @@ function! gundo#GundoToggle()"{{{
call s:GundoToggle()
endfunction"}}}
function! gundo#GundoShow()"{{{
call s:GundoShow()
endfunction"}}}
function! gundo#GundoHide()"{{{
call s:GundoHide()
endfunction"}}}
function! gundo#GundoRenderGraph()"{{{
call s:GundoRenderGraph()
endfunction"}}}