Closed
Description
Did you check the docs and existing issues?
- I have read the docs
- I have searched the existing issues
Neovim version (nvim -v)
0.9.5
Operating system/version
macOS 14.4
Describe the bug
BufReadPost
autocommands are not executed for files/buffers opened from oil.nvim. This may affect other autocommand events, I just haven't tested on them.
What is the severity of this bug?
breaking (some functionality is broken)
Steps To Reproduce
In a directory with some files, edit some using :e
and others via oil.nvim. Note that oil.nvim does not trigger the BufReadPost
autocommand.
CleanShot.2024-04-10.at.22.15.21.mp4
Expected Behavior
Autocmd should print (or do whatever defined behavior there is)
Directory structure
repro-dir/file{1,2,3}.txt
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
vim.api.nvim_create_autocmd({ "BufReadPost" }, {
pattern = "*",
group = vim.api.nvim_create_augroup("buf_read_test", {}),
callback = function()
print("bufreadpost on " .. vim.fn.expand("%"))
end,
})
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.