mirror of https://github.com/sgoudham/nvim.git
fix: echo and replaced all prints with it
parent
f9a412002f
commit
f67244f8f1
@ -1,21 +1,25 @@
|
|||||||
local TITLE = "Catppuccin"
|
local TITLE = "Catppuccin"
|
||||||
|
|
||||||
return function(msg, level)
|
return function(msg, kind)
|
||||||
local has_notify_plugin = pcall(require, "notify")
|
local has_notify_plugin = pcall(require, "notify")
|
||||||
|
local level = {}
|
||||||
|
|
||||||
if level == "error" then
|
if kind == "error" then
|
||||||
level = vim.log.levels.ERROR
|
level.log = vim.log.kinds.ERROR
|
||||||
elseif level == "warn" then
|
level.type = "error"
|
||||||
level = vim.log.levels.WARN
|
elseif kind == "warn" then
|
||||||
|
level.log = vim.log.kinds.WARN
|
||||||
|
level.type = "error"
|
||||||
else
|
else
|
||||||
level = level or vim.log.levels.INFO
|
level.log = kind or vim.log.kinds.INFO
|
||||||
|
level.type = "info"
|
||||||
end
|
end
|
||||||
|
|
||||||
if has_notify_plugin then
|
if has_notify_plugin then
|
||||||
vim.notify(msg, level, {
|
vim.notify(msg, level.log, {
|
||||||
title = TITLE,
|
title = TITLE,
|
||||||
})
|
})
|
||||||
else
|
else
|
||||||
vim.notify(("[%s] %s"):format(TITLE, msg), level)
|
vim.notify(("%s (%s): %s"):format(TITLE, level.type,msg), level.log)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue