refactor: migrate to vim.notify from prints

This commit is contained in:
Smirnov Oleksandr 2022-06-24 15:27:08 +03:00
parent b4fd34ec17
commit 0b415c32e8
8 changed files with 40 additions and 22 deletions

View file

@ -36,4 +36,12 @@ return {
return false
end,
---@param msg string
---@param lvl string
notify = function(msg, lvl)
vim.defer_fn(function()
vim.notify(msg, lvl)
end, 0)
end,
}