aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2023-10-27 19:20:07 +0200
committerChristian Clason <c.clason@uni-graz.at>2023-10-28 00:24:40 +0200
commit9455f6b17c6d1009af5d37d62884fe3042abdfa0 (patch)
tree3a40d3447500a488347dd9ac7e0693b0f9a0614f
parentadd1b10b79011d1af61419a63cc8ef4645f45bbf (diff)
downloadrneovim-9455f6b17c6d1009af5d37d62884fe3042abdfa0.tar.gz
rneovim-9455f6b17c6d1009af5d37d62884fe3042abdfa0.tar.bz2
rneovim-9455f6b17c6d1009af5d37d62884fe3042abdfa0.zip
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>
-rw-r--r--runtime/autoload/netrw.vim3
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/autoload/netrw.vim b/runtime/autoload/netrw.vim
index 8b29ea9dfa..e3e28b6de2 100644
--- 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