fix: cmd.exe with command

This commit is contained in:
əlemi 2024-09-28 01:21:28 +02:00
parent 2b869bb7ab
commit b4e4d302bd
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -57,7 +57,7 @@ if os_uname.sysname == "Windows_NT" then
{ {
callback = function (_ev) callback = function (_ev)
local handle, pid = vim.uv.spawn("cmd.exe", { local handle, pid = vim.uv.spawn("cmd.exe", {
args = { "move", "/Y", native_path, replace_native_path } args = { "/k", "move", "/Y", native_path, replace_native_path }
}) })
end end
} }