changeset 33673:26c9f7fccaeb

runtime(netrw): don't echo empty lines (#13431) Commit: https://github.com/vim/vim/commit/650dcfc8d12e68aa05a358301ec15f9e6dbd03ba Author: nwounkn <nwounkn@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 <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Fri, 27 Oct 2023 19:15:05 +0200
parents 5a2eefbb984a
children 021e5bb88513
files runtime/autoload/netrw.vim
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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