silence unwanted warnings

master
blob42 9 months ago
parent 99b3ecebea
commit 1791d088b3

@ -24,6 +24,16 @@ autocmd("WinLeave", {
group = windowGroup,
})
-- silence unwanted warnings
local notify = vim.notify
vim.notify = function(msg, ...)
if msg:match("warning: multiple different client offset_encodings") then
return
end
notify(msg, ...)
end
-- window closing
-- TODO: using dynamic C-x command
-- if character under cursor is number

Loading…
Cancel
Save