Reducing the noise from neovim messages #908
Unanswered
augustocdias
asked this question in
Q&A
Replies: 1 comment
-
The following is working for me, including not showing message when saving a file (using filter opts = {
routes = {
{ filter = { event = "msg_show", find = "written" } },
{ filter = { event = "msg_show", find = "yanked" } },
{ filter = { event = "msg_show", find = "%d+L, %d+B" } },
{ filter = { event = "msg_show", find = "; after #%d+" } },
{ filter = { event = "msg_show", find = "; before #%d+" } },
{ filter = { event = "msg_show", find = "%d fewer lines" } },
{ filter = { event = "msg_show", find = "%d more lines" } },
{ filter = { event = "msg_show", find = "<ed" } },
{ filter = { event = "msg_show", find = ">ed" } },
},
} |
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
-
Hi,
I'm trying to use Noice to reduce the noise from neovim messages which I cannot with the
shortmess
setting by filtering out them. I have managed some, but some others I'm being unable to.Here's my
shortmess
setting:IOocWTtFxnflCi
And my noice filters:
This one bellow is the most annoying and that is still being shown:
"~/Documents/notes/projects/rusty-jwt-tools.norg" [New] 3L, 125B
I've tried also with
[\\d]*L, [\\d]*B
but it didn't work.Any idea how to filter this out? The others are working as intended.
Beta Was this translation helpful? Give feedback.
All reactions