chore: format all lua files

This commit is contained in:
2025-09-06 01:29:17 +02:00
parent cc8164aef9
commit 44dfa47f41
13 changed files with 225 additions and 205 deletions
+4 -17
View File
@@ -4,41 +4,28 @@ local M = {}
---@param fmt string
---@param ... any
function M.error(fmt, ...)
vim.notify(
fmt:format(...),
vim.log.levels.ERROR
)
vim.notify(fmt:format(...), vim.log.levels.ERROR)
end
--- Log warning message
---@param fmt string
---@param ... any
function M.warning(fmt, ...)
vim.notify(
fmt:format(...),
vim.log.levels.WARN
)
vim.notify(fmt:format(...), vim.log.levels.WARN)
end
--- Log info message
---@param fmt string
---@param ... any
function M.info(fmt, ...)
vim.notify(
fmt:format(...),
vim.log.levels.INFO
)
vim.notify(fmt:format(...), vim.log.levels.INFO)
end
--- Log debug message
---@param fmt string
---@param ... any
function M.debug(fmt, ...)
vim.notify(
fmt:format(...),
vim.log.levels.DEBUG
)
vim.notify(fmt:format(...), vim.log.levels.DEBUG)
end
return M