diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-11-26 21:44:46 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-11-26 21:44:46 +0100 |
commit | 0c0734d527a132edfb4089be48486586424b3f41 (patch) | |
tree | 6dc04964a23e8c85be6283a1642c06f2003bc7c2 /runtime/autoload | |
parent | fc4ea2a72d36de1196a3ce17352e72f8fe90f4bb (diff) | |
download | vim-git-0c0734d527a132edfb4089be48486586424b3f41.tar.gz |
Update runtime files
Diffstat (limited to 'runtime/autoload')
-rw-r--r-- | runtime/autoload/netrw.vim | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/runtime/autoload/netrw.vim b/runtime/autoload/netrw.vim index ac1d26847..e080879bf 100644 --- a/runtime/autoload/netrw.vim +++ b/runtime/autoload/netrw.vim @@ -918,8 +918,8 @@ fun! netrw#Explore(indx,dosplit,style,...) NetrwKeepj call netrw#ErrorMsg(s:WARNING,"using Nexplore or <s-down> improperly; see help for netrw-starstar",40) if has("clipboard") " call Decho("(netrw#Explore) restore @* and @+",'~'.expand("<slnum>")) - sil! let @* = keepregstar - sil! let @+ = keepregplus + if @* != keepregstar | sil! let @* = keepregstar | endif + if @+ != keepregplus | sil! let @+ = keepregplus | endif endif sil! let @/ = keepregslash " call Dret("netrw#Explore") @@ -944,8 +944,8 @@ fun! netrw#Explore(indx,dosplit,style,...) NetrwKeepj call netrw#ErrorMsg(s:WARNING,"using Pexplore or <s-up> improperly; see help for netrw-starstar",41) if has("clipboard") " call Decho("(netrw#Explore) restore @* and @+",'~'.expand("<slnum>")) - sil! let @* = keepregstar - sil! let @+ = keepregplus + if @* != keepregstar | sil! let @* = keepregstar | endif + if @+ != keepregplus | sil! let @+ = keepregplus | endif endif sil! let @/ = keepregslash " call Dret("netrw#Explore") @@ -1000,8 +1000,8 @@ fun! netrw#Explore(indx,dosplit,style,...) if &hls | let keepregslash= s:ExplorePatHls(pattern) | endif if has("clipboard") " call Decho("(netrw#Explore) restore @* and @+",'~'.expand("<slnum>")) - sil! let @* = keepregstar - sil! let @+ = keepregplus + if @* != keepregstar | sil! let @* = keepregstar | endif + if @+ != keepregplus | sil! let @+ = keepregplus | endif endif sil! let @/ = keepregslash " call Dret("netrw#Explore : no files matched pattern") @@ -1037,8 +1037,8 @@ fun! netrw#Explore(indx,dosplit,style,...) keepalt NetrwKeepj call netrw#ErrorMsg(s:WARNING,"no files matched",42) if has("clipboard") " call Decho("(netrw#Explore) restore @* and @+",'~'.expand("<slnum>")) - sil! let @* = keepregstar - sil! let @+ = keepregplus + if @* != keepregstar | sil! let @* = keepregstar | endif + if @+ != keepregplus | sil! let @+ = keepregplus | endif endif sil! let @/ = keepregslash " call Dret("netrw#Explore : no files matched") @@ -1086,8 +1086,8 @@ fun! netrw#Explore(indx,dosplit,style,...) endif if has("clipboard") " call Decho("(netrw#Explore) restore @* and @+",'~'.expand("<slnum>")) - sil! let @* = keepregstar - sil! let @+ = keepregplus + if @* != keepregstar | sil! let @* = keepregstar | endif + if @+ != keepregplus | sil! let @+ = keepregplus | endif endif sil! let @/ = keepregslash " call Dret("netrw#Explore : missing +path_extra") @@ -1160,8 +1160,8 @@ fun! netrw#Explore(indx,dosplit,style,...) let s:netrw_events= 2 if has("clipboard") " call Decho("(netrw#Explore) restore @* and @+",'~'.expand("<slnum>")) - sil! let @* = keepregstar - sil! let @+ = keepregplus + if @* != keepregstar | sil! let @* = keepregstar | endif + if @+ != keepregplus | sil! let @+ = keepregplus | endif endif sil! let @/ = keepregslash " call Dret("netrw#Explore : @/<".@/.">") @@ -9602,8 +9602,8 @@ fun! s:NetrwWideListing() endwhile if has("clipboard") " call Decho("(s:NetrwWideListing) restore @* and @+",'~'.expand("<slnum>")) - sil! let @*= keepregstar - sil! let @+= keepregplus + if @* != keepregstar | sil! let @* = keepregstar | endif + if @+ != keepregplus | sil! let @+ = keepregplus | endif endif exe "sil! NetrwKeepj ".w:netrw_bannercnt.',$s/\s\+$//e' NetrwKeepj call histdel("/",-1) |