We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
log
1 parent 74f2987 commit 422b6beCopy full SHA for 422b6be
1 file changed
lua/leetcode/logger/init.lua
@@ -29,7 +29,9 @@ function logger.log(msg, lvl)
29
msg = debug.traceback(msg .. "\n")
30
end
31
32
- vim.notify(msg, lvl, { title = title })
+ vim.schedule(function()
33
+ vim.notify(msg, lvl, { title = title })
34
+ end)
35
36
37
---@param msg any
0 commit comments