Stop showing "lines" related msgs in nvim
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user