Skip to content

Commit

Permalink
feat(logger): fmt file
Browse files Browse the repository at this point in the history
  • Loading branch information
creativenull committed Aug 1, 2023
1 parent 1133482 commit 8cb3734
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/efmls-configs/logger.lua
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
local M = {}

M.error = function(msg)
vim.api.nvim_echo({ {msg, 'ErrorMsg'} }, true, {})
vim.api.nvim_echo({ { msg, 'ErrorMsg' } }, true, {})
end

M.info = function(msg)
vim.api.nvim_echo({ {msg, 'WarningMsg'} }, true, {})
vim.api.nvim_echo({ { msg, 'WarningMsg' } }, true, {})
end

return M

0 comments on commit 8cb3734

Please sign in to comment.