mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-23 17:28:57 +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
|
||||
vim.schedule(function()
|
||||
---@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))
|
||||
end
|
||||
end)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue