diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-11-24 22:46:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-24 14:46:21 +0000 |
commit | 21371c9259e8b60278f361b1961b297ae3a4b41e (patch) | |
tree | e6851bf280bdeaa20073957db09779153f1ef4d3 | |
parent | 5c603064421b8829cf106c845902fcc41d3e31f2 (diff) | |
download | rneovim-21371c9259e8b60278f361b1961b297ae3a4b41e.tar.gz rneovim-21371c9259e8b60278f361b1961b297ae3a4b41e.tar.bz2 rneovim-21371c9259e8b60278f361b1961b297ae3a4b41e.zip |
vim-patch:d7745ac: runtime(netrw): Fixing powershell execution issues on Windows (#31333)
closes: vim/vim#16094
https://github.com/vim/vim/commit/d7745acbd8fe1e4feb356a6dc7fc185eeab17d67
Co-authored-by: GuyBrush <miguel.barro@live.com>
-rw-r--r-- | runtime/autoload/netrw.vim | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/runtime/autoload/netrw.vim b/runtime/autoload/netrw.vim index 3a4d3377c5..6a26a7d0b1 100644 --- a/runtime/autoload/netrw.vim +++ b/runtime/autoload/netrw.vim @@ -37,6 +37,7 @@ " 2024 Nov 10 by Vim Project: directory symlink not resolved in tree view (#16020) " 2024 Nov 14 by Vim Project: small fixes to netrw#BrowseX (#16056) " 2024 Nov 23 by Vim Project: update decompress defaults (#16104) +" 2024 Nov 23 by Vim Project: fix powershell escaping issues (#16094) " }}} " Former Maintainer: Charles E Campbell " GetLatestVimScripts: 1075 1 :AutoInstall: netrw.vim @@ -11313,9 +11314,7 @@ endfun " --------------------------------------------------------------------- " s:NetrwExe: executes a string using "!" {{{2 fun! s:NetrwExe(cmd) -" call Dfunc("s:NetrwExe(a:cmd<".a:cmd.">)") - if has("win32") -" call Decho("using win32:",expand("<slnum>")) + if has("win32") && exepath(&shell) !~? '\v[\/]?(cmd|pwsh|powershell)(\.exe)?$' && !g:netrw_cygwin let savedShell=[&shell,&shellcmdflag,&shellxquote,&shellxescape,&shellquote,&shellpipe,&shellredir,&shellslash] set shell& shellcmdflag& shellxquote& shellxescape& set shellquote& shellpipe& shellredir& shellslash& @@ -11325,13 +11324,11 @@ fun! s:NetrwExe(cmd) let [&shell,&shellcmdflag,&shellxquote,&shellxescape,&shellquote,&shellpipe,&shellredir,&shellslash] = savedShell endtry else -" call Decho("exe ".a:cmd,'~'.expand("<slnum>")) exe a:cmd endif if v:shell_error call netrw#ErrorMsg(s:WARNING,"shell signalled an error",106) endif -" call Dret("s:NetrwExe : v:shell_error=".v:shell_error) endfun " --------------------------------------------------------------------- |