mirror of
https://github.com/neovim/neovim.git
synced 2025-09-07 20:08:17 +00:00

Adds function to notify the user like this: `:lua vim.notify("hello user")` embeds log levels vim.log.levels. you can then reassign vim.notify to for instance ``` function notify_external(msg, log_level, opts) vim.fn.jobstart({"notify-send", msg }) end ```