# HG changeset patch # User Christian Brabandt # Date 1698426905 -7200 # Node ID 26c9f7fccaebc5d83cec5a6309c99a6441110b67 # Parent 5a2eefbb984a17b86bdf54006df54a4c0a409fd7 runtime(netrw): don't echo empty lines (#13431) Commit: https://github.com/vim/vim/commit/650dcfc8d12e68aa05a358301ec15f9e6dbd03ba Author: nwounkn 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 diff --git a/runtime/autoload/netrw.vim b/runtime/autoload/netrw.vim --- 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("")) 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