fix(nvim): update bufs in statusline on BufEnter
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m12s

This commit is contained in:
Price Hiller 2024-09-21 15:06:52 -05:00
parent dff7216545
commit b1058c1cb9
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -328,7 +328,7 @@ return {
end end
local Buffers = { local Buffers = {
update = { "BufNew", "VimEnter", "BufWipeout", "BufUnload", "BufDelete" }, update = { "BufEnter", "BufNew", "VimEnter", "BufWipeout", "BufUnload", "BufDelete" },
condition = function() condition = function()
return #cur_bufs() > 0 return #cur_bufs() > 0
end, end,