commit 9455f6b17c6d1009af5d37d62884fe3042abdfa0
parent add1b10b79011d1af61419a63cc8ef4645f45bbf
Author: Christian Clason <c.clason@uni-graz.at>
Date: Fri, 27 Oct 2023 19:20:07 +0200
vim-patch:650dcfc8d12e
runtime(netrw): don't echo empty lines (vim/vim#13431)
https://github.com/vim/vim/commit/650dcfc8d12e68aa05a358301ec15f9e6dbd03ba
Co-authored-by: nwounkn <nwounkn@gmail.com>
Diffstat:
1 file changed, 0 insertions(+), 3 deletions(-)
diff --git a/runtime/autoload/netrw.vim b/runtime/autoload/netrw.vim
@@ -1134,7 +1134,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
@@ -5688,8 +5687,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