neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit a6412b3d535d37e36de460299d35581967b25439
parent 192839a3286115ce35b4b53ff61bfde542d0ad93
Author: Jaehwang Jung <tomtomjhj@gmail.com>
Date:   Sat, 13 Sep 2025 01:12:11 +0900

vim-patch:da53af5: runtime(netrw): correctly handle shellslash variable

closes: vim/vim#16758

https://github.com/vim/vim/commit/da53af57a7c72e95f84fc0a0b99ae460ff8dab78

Co-authored-by: Luca Saccarola <github.e41mv@aleeas.com>

Diffstat:
Mruntime/pack/dist/opt/netrw/autoload/netrw/fs.vim | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runtime/pack/dist/opt/netrw/autoload/netrw/fs.vim b/runtime/pack/dist/opt/netrw/autoload/netrw/fs.vim @@ -2,7 +2,7 @@ " THESE FUNCTIONS DON'T COMMIT TO ANY BACKWARDS COMPATIBILITY. SO CHANGES AND " BREAKAGES IF USED OUTSIDE OF NETRW.VIM ARE EXPECTED. -let s:slash = &shellslash ? '/' : '\' +let s:slash = !exists('+shellslash') || &shellslash ? '/' : '\' " netrw#fs#PathJoin: Appends a new part to a path taking different systems into consideration {{{