We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8416a0c commit 0d49755Copy full SHA for 0d49755
1 file changed
lua/leetcode/logger/init.lua
@@ -29,6 +29,10 @@ function logger.log(msg, lvl)
29
msg = debug.traceback(msg .. "\n")
30
end
31
32
+ if not vim.in_fast_event() then
33
+ vim.notify(msg, lvl, { title = title })
34
+ return
35
+ end
36
vim.schedule(function()
37
vim.notify(msg, lvl, { title = title })
38
end)
0 commit comments