mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-24 09:48:59 +02:00
fix(util): prevent loop for now. Still need to figure out what's causing it
This commit is contained in:
parent
207beafda2
commit
bbb59d3ffd
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ function M.lazy_notify()
|
||||||
end
|
end
|
||||||
vim.schedule(function()
|
vim.schedule(function()
|
||||||
---@diagnostic disable-next-line: no-unknown
|
---@diagnostic disable-next-line: no-unknown
|
||||||
for _, notif in ipairs(notifs) do
|
for _, notif in ipairs(vim.deepcopy(notifs)) do
|
||||||
vim.notify(vim.F.unpack_len(notif))
|
vim.notify(vim.F.unpack_len(notif))
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue