Stop showing "lines" related msgs in nvim

This commit is contained in:
2025-09-02 21:34:24 +03:00
parent fd451b891c
commit 5cf8fa3815
2 changed files with 9 additions and 44 deletions

View File

@@ -79,22 +79,15 @@ return {
},
opts = { skip = true },
},
-- TODO: Do I need this?
-- {
-- filter = {
-- event = 'msg_show',
-- kind = 'search_count',
-- },
-- opts = { skip = true },
-- },
-- {
-- filter = {
-- event = 'msg_show',
-- kind = '',
-- find = 'written',
-- },
-- -- opts = { skip = true },
-- },
{
-- NOTE: filters "fewer/more lines" messages
filter = {
event = 'msg_show',
kind = '',
find = 'lines',
},
opts = { skip = true },
},
},
presets = {
bottom_search = true, -- use a classic bottom cmdline for search

View File

@@ -159,34 +159,6 @@ return {
gitbrowse = {},
image = {},
input = {},
-- TODO: do I need this still?
-- notifier = {
-- ---@type snacks.notifier.style
-- style = 'compact',
-- filter = function(notif)
-- local exact_filter = { 'No information available', 'No code actions available' }
-- local contains_filter = {
-- 'lines',
-- 'fewer lines',
-- 'lines indented',
-- 'lines yanked',
-- 'more lines',
-- 'lines moved',
-- 'E486:',
-- }
-- for _, msg in ipairs(exact_filter) do
-- if notif.msg == msg then
-- return false
-- end
-- end
-- for _, msg in ipairs(contains_filter) do
-- if string.find(notif.msg, msg) then
-- return false
-- end
-- end
-- return true
-- end,
-- },
picker = {},
quickfile = {},
terminal = {