mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-22 15:34:53 +01:00
fix: cmd.exe with command
This commit is contained in:
parent
2b869bb7ab
commit
b4e4d302bd
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue