We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5465846 commit 633e627Copy full SHA for 633e627
1 file changed
lua/markview/autocmds.lua
@@ -401,6 +401,17 @@ autocmds.lazy_loaded = function ()
401
require("markview.highlights").setup();
402
require("markview.integrations").setup();
403
404
+ for _, buf in ipairs(vim.api.nvim_list_bufs()) do
405
+ autocmds.bufHandle({
406
+ buf = buf,
407
+ event = "BufEnter",
408
+ match = "Lazy",
409
+ file = vim.api.nvim_buf_get_name(buf),
410
+
411
+ id = -1,
412
+ });
413
+ end
414
415
--[[
416
BUG: Do not attempt to attach to buffers.
417
0 commit comments