suppress write messages for noice.nvim

This commit is contained in:
2024-05-17 08:14:12 -06:00
parent a8e283cbec
commit e5c3667a18

View File

@@ -58,4 +58,24 @@ return {
}, },
}, },
}, },
{
"folke/noice.nvim",
opts = {
routes = {
{
filter = {
event = 'msg_show',
any = {
{ find = '%d+L, %d+B' },
{ find = '; after #%d+' },
{ find = '; before #%d+' },
{ find = '%d fewer lines' },
{ find = '%d more lines' },
},
},
opts = { skip = true },
}
}
}
}
} }