Replies: 1 comment
-
@bibjaw99 you can configure the filter function in the opts.notifier, it accepts snacks.notifier.Notif opts as param that you can use to access the notifications generated by the notifier. this is in my config: ...
notifier = {
enabled = true,
timeout = 3000,
style = "fancy",
filter = function(n)
if n.msg == "No information available" then
return false
end
return true
end,
},
... you can expand on that snippet with a |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I used to have this chunk in my config for disabling the message while using nvim-notify. I want to do something similar with snacks if it is possible.
Beta Was this translation helpful? Give feedback.
All reactions