Replies: 3 comments
-
For the E490: No fold found make another filter with kind Maybe this helps. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@ilias777 Thanks. It did. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I been using the following routes a while now to cut down on visual distractions: opts.routes = {
{
filter = {
event = "msg_show",
any = {
{ find = "E85: There is no listed buffer" },
{ find = "E486: Pattern not found: ?$" },
{ find = "E490: No fold found" },
{ find = "Already at oldest change" },
{ find = "; after #%d+" },
{ find = "; before #%d+" },
{ find = "^%d+ fewer lines;?" },
{ find = "^%d+ more lines;?" },
{ find = "^%d+ line lesses;?" },
{ find = ".*Pattern not found.*$" },
{ find = '^%d+ lines .ed %d+ times?$' },
{ find = '^%d+ lines yanked$' },
{ kind = 'wmsg' },
}
},
opts = { skip = true },
},
{
filter = {
event = "msg_show",
any = {
{ find = "%d+L, %d+B" },
{ find = "[nvim-treesitter]*$" },
},
},
view = "mini",
},
}
|
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
-
My entire noice.nvim configuration is listed below. There are only 39 lines. I am failing to correctly configure a route and filter that skips "E486: Pattern not found" and "E490: No fold found". The noice command shows the output expected, but Notify is still showing the error. What did I miss in the documentation which has lead to an invalid configuartion.
Beta Was this translation helpful? Give feedback.
All reactions