avoid flicker when operating

- use `redraw` instead `redraw!`
- closes #90
This commit is contained in:
gmarik
2011-10-03 17:50:15 -05:00
parent cae6df72cf
commit 304e63642b
2 changed files with 8 additions and 8 deletions

View File

@@ -9,13 +9,13 @@ func! vundle#scripts#all(bang, ...)
let b:match = a:1
endif
call vundle#scripts#view('search',info, vundle#scripts#bundle_names(reverse(matches)))
redraw!
redraw
echo len(matches).' bundles found'
endf
func! vundle#scripts#reload() abort
silent exec ':BundleSearch! '.(exists('b:match') ? b:match : '')
redraw!
redraw
endf
func! vundle#scripts#complete(a,c,d)