runtime(netrw): do not pollute search history with symlinks Commit: https://github.com/vim/vim/commit/5c42c7731536418c53273932d7ef76b80b001f38 Author: Christian Brabandt <c...@256bit.org> Date: Thu Dec 12 19:13:08 2024 +0100
runtime(netrw): do not pollute search history with symlinks fixes: https://github.com/vim/vim/issues/16206 Signed-off-by: Christian Brabandt <c...@256bit.org> diff --git a/runtime/autoload/netrw.vim b/runtime/autoload/netrw.vim index b90a8d672..b0dfd823c 100644 --- a/runtime/autoload/netrw.vim +++ b/runtime/autoload/netrw.vim @@ -40,6 +40,7 @@ " 2024 Nov 23 by Vim Project: fix powershell escaping issues (#16094) " 2024 Dec 04 by Vim Project: do not detach for gvim (#16168) " 2024 Dec 08 by Vim Project: check the first arg of netrw_browsex_viewer for being executable (#16185) +" 2024 Dec 12 by Vim Project: do not pollute the search history (#16206) " }}} " Former Maintainer: Charles E Campbell " GetLatestVimScripts: 1075 1 :AutoInstall: netrw.vim @@ -11774,7 +11775,8 @@ endfun " s:ShowLink: used to modify thin and tree listings to show links {{{2 fun! s:ShowLink() if exists("b:netrw_curdir") - norm! $? + keepp :norm! $? + "call histdel("/",-1) if exists("w:netrw_liststyle") && w:netrw_liststyle == s:TREELIST && exists("w:netrw_treetop") let basedir = s:NetrwTreePath(w:netrw_treetop) else -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+unsubscr...@googlegroups.com. To view this discussion visit https://groups.google.com/d/msgid/vim_dev/E1tLniO-009IDc-LO%40256bit.org.