avoid lost output from FindSymbolInSources()

This commit is contained in:
Josh Holtrop 2012-12-09 22:41:03 -05:00
parent 515e951bfe
commit 2dc95f6585

3
vimrc
View File

@ -145,6 +145,7 @@ function! FindSymbolInSources(sources, ...)
if n_matches == 0 if n_matches == 0
cclose cclose
else else
echomsg "Found " . n_matches . " matches" redraw " the following echo will be lost without redrawing here
echo "Found " . n_matches . " matches"
endif endif
endfunction endfunction