]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(netrw): don't echo empty lines (#13431)
authornwounkn <nwounkn@gmail.com>
Fri, 27 Oct 2023 17:07:38 +0000 (22:07 +0500)
committerGitHub <noreply@github.com>
Fri, 27 Oct 2023 17:07:38 +0000 (19:07 +0200)
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/autoload/netrw.vim

index 33a2fdd897b248ae4a53a797f445ae018b23ecc6..d2df84666290e0c72bc68409da9cca6f8154363f 100644 (file)
@@ -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