From: 毛逸宁 Date: Sat, 16 Aug 2025 15:38:33 +0000 (+0200) Subject: runtime(vim9): Disable shellslash for shellescape() in Open() X-Git-Tag: v9.1.1638~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39f9298cb2944071b2b19a6b28edf0939aa4312d;p=thirdparty%2Fvim.git runtime(vim9): Disable shellslash for shellescape() in Open() fixes: #17995 closes: #18004 Signed-off-by: 毛逸宁 Signed-off-by: Christian Brabandt --- diff --git a/runtime/autoload/dist/vim9.vim b/runtime/autoload/dist/vim9.vim index 6d4079ea36..fa14bdaf04 100644 --- a/runtime/autoload/dist/vim9.vim +++ b/runtime/autoload/dist/vim9.vim @@ -3,7 +3,7 @@ vim9script # Vim runtime support library # # Maintainer: The Vim Project -# Last Change: 2025 Jan 29 +# Last Change: 2025 Aug 15 export def IsSafeExecutable(filetype: string, executable: string): bool if empty(exepath(executable)) @@ -121,6 +121,11 @@ def Viewer(): string enddef export def Open(file: string) + # disable shellslash for shellescape, required on Windows #17995 + if exists('+shellslash') && &shellslash + &shellslash = false + defer setbufvar('%', '&shellslash', true) + endif Launch($"{Viewer()} {shellescape(file, 1)}") enddef