From 2dc95f6585a66fc8240fab5560bf26302deb1e71 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sun, 9 Dec 2012 22:41:03 -0500 Subject: [PATCH] avoid lost output from FindSymbolInSources() --- vimrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vimrc b/vimrc index b8ef366..cb0e39b 100644 --- a/vimrc +++ b/vimrc @@ -145,6 +145,7 @@ function! FindSymbolInSources(sources, ...) if n_matches == 0 cclose else - echomsg "Found " . n_matches . " matches" + redraw " the following echo will be lost without redrawing here + echo "Found " . n_matches . " matches" endif endfunction