You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a file within a directory. I attempt to move the file up one level, and remove the (now empty) directory. The directory is deleted (I think before the file move is attempted), and the file is not moved. The file is also deleted. There is an exception message.
Steps To Reproduce
nvim -u repro.lua
:Oil
go into 'foo' dir
'dd' to delete the file
'-' to go back to root
'p' to put the file in the root
delete 'foo' dir
':w' to make the changes, 'o' to confirm
Expected Behavior
Expected the file to be moved, and then the directory to be deleted.
Directory structure
foo/file.lua
Repro
-- save as repro.lua-- run with nvim -u repro.lua-- DO NOT change the pathslocalroot=vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .reprofor_, nameinipairs({ "config", "data", "state", "runtime", "cache" }) dovim.env[("XDG_%s_HOME"):format(name:upper())] =root.."/" ..nameend-- bootstrap lazylocallazypath=root.."/plugins/lazy.nvim"ifnotvim.loop.fs_stat(lazypath) thenvim.fn.system({
"git",
"clone",
"--filter=blob:none",
"--single-branch",
"https://github.com/folke/lazy.nvim.git",
lazypath,
})
endvim.opt.runtimepath:prepend(lazypath)
-- install pluginslocalplugins= {
"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?
I have confirmed that the bug reproduces with nvim -u repro.lua using the repro.lua file above.
The text was updated successfully, but these errors were encountered:
Did you check the docs and existing issues?
Neovim version (nvim -v)
0.9.1 (winget)
Operating system/version
win10 22h2
Describe the bug
There is a file within a directory. I attempt to move the file up one level, and remove the (now empty) directory. The directory is deleted (I think before the file move is attempted), and the file is not moved. The file is also deleted. There is an exception message.
Steps To Reproduce
Expected Behavior
Expected the file to be moved, and then the directory to be deleted.
Directory structure
foo/file.lua
Repro
Did you check the bug with a clean config?
nvim -u repro.lua
using the repro.lua file above.The text was updated successfully, but these errors were encountered: