Skip to content

Commit c6a57a3

Browse files
committed
feat(util): pass lang to vim.notify so that snacks notifier can render the ft. Closes #1919
1 parent f15a939 commit c6a57a3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lua/lazy/core/util.lua

+1
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,7 @@ function M.notify(msg, opts)
374374
local lang = opts.lang or "markdown"
375375
local n = opts.once and vim.notify_once or vim.notify
376376
n(msg, opts.level or vim.log.levels.INFO, {
377+
ft = lang,
377378
on_open = function(win)
378379
local ok = pcall(function()
379380
vim.treesitter.language.add("markdown")

0 commit comments

Comments
 (0)