runtime(netrw): don't echo empty lines (#13431)
Commit:
https://github.com/vim/vim/commit/650dcfc8d12e68aa05a358301ec15f9e6dbd03ba
Author: nwounkn <
nwo...@gmail.com>
Date: Fri Oct 27 22:07:38 2023 +0500
runtime(netrw): don't echo empty lines (
https://github.com/vim/vim/issues/13431)
Signed-off-by: Christian Brabandt <
c...@256bit.org>
diff --git a/runtime/autoload/netrw.vim b/runtime/autoload/netrw.vim
index 33a2fdd89..d2df84666 100644
--- a/runtime/autoload/netrw.vim
+++ b/runtime/autoload/netrw.vim
@@ -1166,7 +1166,6 @@ fun! netrw#Explore(indx,dosplit,style,...)
2match none
if exists("s:explore_match") | unlet s:explore_match | endif
if exists("s:explore_prvdir") | unlet s:explore_prvdir | endif
- echo " "
" call Decho("cleared explore match list",'~'.expand("<slnum>"))
endif
@@ -5730,8 +5729,6 @@ fun! s:NetrwClearExplore()
if exists("w:netrw_explore_list") |unlet w:netrw_explore_list |endif
if exists("w:netrw_explore_bufnr") |unlet w:netrw_explore_bufnr |endif
" redraw!
- echo " "
- echo " "
" call Dret("s:NetrwClearExplore")
endfun