feat(util): pass lang to vim.notify so that snacks notifier can render the ft. Closes #1919

This commit is contained in:
Folke Lemaitre 2025-02-15 08:19:49 +01:00
parent f15a93907d
commit c6a57a3534
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -374,6 +374,7 @@ function M.notify(msg, opts)
local lang = opts.lang or "markdown"
local n = opts.once and vim.notify_once or vim.notify
n(msg, opts.level or vim.log.levels.INFO, {
ft = lang,
on_open = function(win)
local ok = pcall(function()
vim.treesitter.language.add("markdown")