From 208413677ff0316deef6a8678c66bd435fdb0673 Mon Sep 17 00:00:00 2001 From: Taybin Rutkin Date: Thu, 10 Mar 2011 15:50:25 -0500 Subject: [PATCH] use redraw! instead of redraw --- plugin/tagbar.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugin/tagbar.vim b/plugin/tagbar.vim index d0371e8..2870391 100644 --- a/plugin/tagbar.vim +++ b/plugin/tagbar.vim @@ -1566,7 +1566,7 @@ function! s:ToggleHelp() endif execute 1 - redraw + redraw! endfunction " User actions {{{1 @@ -1604,7 +1604,7 @@ function! s:HighlightTag(fname) if tagline == 0 execute prevwinnr . 'wincmd w' let &eventignore = eventignore_save - redraw + redraw! return endif @@ -1625,7 +1625,7 @@ function! s:HighlightTag(fname) let &eventignore = eventignore_save - redraw + redraw! endfunction " s:JumpToTag() {{{2 @@ -1655,7 +1655,7 @@ function! s:JumpToTag() .foldopen! endif - redraw + redraw! if g:tagbar_autoclose || autoclose call s:CloseWindow()