Did you check the docs and existing issues?
Neovim version (nvim -v)
0.12.5
Operating system/version
Arch Linux
Describe the bug
When moving or copying multiple files/directories and deleting their parent (in bulk), the delete operations are executed first, thus removing the targets and being unable to move or copy.
What is the severity of this bug?
tolerable (can work around it)
Steps To Reproduce
- dd on
a.txt inside home/parent1/of/
- p inside
home/destination/
- dd on
home/parent1/
- dd on
b.txt inside home/parent2/of/
- p inside
home/destination/
- dd on
home/parent2/
- when
:w, it asks:
DELETE home/parent1/
DELETE home/parent2/
MOVE home/parent1/of/a.txt -> home/destination/a.txt
MOVE home/parent2/of/b.txt -> home/destination/b.txt
Expected Behavior
delete operations should remain last (to allow bulk operations).
(the only time i could see wanting them first is if you delete a directory to paste a new one in)
Directory structure
home/parent1/of/a.txt
home/parent2/of/b.txt
home/destination/
Repro
-- save as repro.lua
-- run with nvim -u repro.lua
-- DO NOT change the paths
local root = vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "runtime", "cache" }) do
vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end
-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"--single-branch",
"https://github.com/folke/lazy.nvim.git",
lazypath,
})
end
vim.opt.runtimepath:prepend(lazypath)
-- install plugins
local plugins = {
"folke/tokyonight.nvim",
{
"stevearc/oil.nvim",
config = function()
require("oil").setup({
-- add any needed settings here
})
end,
},
-- add any other plugins here
}
require("lazy").setup(plugins, {
root = root .. "/plugins",
})
vim.cmd.colorscheme("tokyonight")
-- add anything else here
Did you check the bug with a clean config?
Did you check the docs and existing issues?
Neovim version (nvim -v)
0.12.5
Operating system/version
Arch Linux
Describe the bug
When moving or copying multiple files/directories and deleting their parent (in bulk), the delete operations are executed first, thus removing the targets and being unable to move or copy.
What is the severity of this bug?
tolerable (can work around it)
Steps To Reproduce
a.txtinsidehome/parent1/of/home/destination/home/parent1/b.txtinsidehome/parent2/of/home/destination/home/parent2/:w, it asks:Expected Behavior
delete operations should remain last (to allow bulk operations).
(the only time i could see wanting them first is if you delete a directory to paste a new one in)
Directory structure
home/parent1/of/a.txt
home/parent2/of/b.txt
home/destination/
Repro
Did you check the bug with a clean config?
nvim -u repro.luausing the repro.lua file above.