Did you check the docs and existing issues?
Neovim version (nvim -v)
NVIM v0.13.0-dev-740+g635939da3e Build type: RelWithDebInfo LuaJIT 2.1.1774896198
Operating system/version
Linux 7.0.12-arch1-1 x86_64 GNU/Linux
Describe the bug
i get E211: File X no longer available when i delete a file.
it does not happen every time. could not figure out what is the trigger.
What is the severity of this bug?
minor (annoyance)
Steps To Reproduce
create a file, write to it, and then delete it
Expected Behavior
don't show the message
Directory structure
No response
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)
NVIM v0.13.0-dev-740+g635939da3e Build type: RelWithDebInfo LuaJIT 2.1.1774896198
Operating system/version
Linux 7.0.12-arch1-1 x86_64 GNU/Linux
Describe the bug
i get
E211: File X no longer availablewhen i delete a file.it does not happen every time. could not figure out what is the trigger.
What is the severity of this bug?
minor (annoyance)
Steps To Reproduce
create a file, write to it, and then delete it
Expected Behavior
don't show the message
Directory structure
No response
Repro
Did you check the bug with a clean config?
nvim -u repro.luausing the repro.lua file above.