Remove redraw! while still clearing last message empty string. (#979)

This commit is contained in:
Phil Runninger
2019-04-16 09:55:20 -04:00
committed by GitHub
parent 7513f256aa
commit e126b8745d
3 changed files with 6 additions and 5 deletions

View File

@@ -169,7 +169,7 @@ endfunction
"msg: the message to echo
function! nerdtree#echo(msg)
redraw
echomsg "NERDTree: " . a:msg
echomsg empty(a:msg) ? "" : ("NERDTree: " . a:msg)
endfunction
"FUNCTION: nerdtree#echoError {{{2