fix(nvim): correctly set border for snacks notif history

This commit is contained in:
Price Hiller 2024-11-18 21:49:56 -06:00
parent 0912f8f656
commit 6ca917b7c5
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -9,7 +9,7 @@ local bwdelete = function(opts)
local nuke = false
if vim.fn.win_gettype() ~= '' and not vim.bo[opts.buf].modified then
if vim.fn.win_gettype() ~= "" and not vim.bo[opts.buf].modified then
opts.force = true
nuke = true
end
@ -110,7 +110,7 @@ return {
})
snacks.config.styles["notification.history"] = {
title = { { "Notification History", "@markup.heading.4" } },
border = { " " },
border = { { " ", "INVALIDHIGHLIGHTHERE" } },
}
_G.bt = snacks.debug.backtrace
_G.dd = snacks.debug.inspect