mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 06:28:35 +00:00
fix(notify): Expected 3 arguments error (#13905)
This commit is contained in:
@@ -500,7 +500,7 @@ function vim.notify(msg, log_level, _opts)
|
||||
if log_level == vim.log.levels.ERROR then
|
||||
vim.api.nvim_err_writeln(msg)
|
||||
else
|
||||
vim.api.nvim_echo(msg)
|
||||
vim.api.nvim_echo({{msg}}, true, {})
|
||||
end
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user