mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-18 20:36:45 +00:00
feat: util.info
This commit is contained in:
parent
72889623af
commit
e59dc377d5
2 changed files with 7 additions and 1 deletions
|
@ -185,6 +185,12 @@ function M.error(msg)
|
|||
})
|
||||
end
|
||||
|
||||
function M.info(msg)
|
||||
vim.notify(msg, vim.log.levels.INFO, {
|
||||
title = "lazy.nvim",
|
||||
})
|
||||
end
|
||||
|
||||
function M._dump(value, result)
|
||||
local t = type(value)
|
||||
if t == "number" or t == "boolean" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue