Replies: 2 comments
-
These are LSP messages. I think you can't use here a filter to skip these messages. I don't use local harper_ls_token = nil
if name == 'harper_ls' then
if result.token == harper_ls_token then
return
end
if value.title == 'Linting' then
harper_ls_token = result.token
return
end
end Maybe this helps. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the answer, @ilias777. I've tried everything, debugged the titles and tokens in this handler, but couldn't intercept the pesky |
Beta Was this translation helpful? Give feedback.
-
Trying to suppress the noisy notifications (shown on every keystroke) that produced by
harper_ls
[*] I followed the respective instructions, but to no avail. Perhaps despite the "LSP Message" title the type is not in factlsp
? How do I find out which type/kind to filter for a particular lsp/plugin? Any help would be appreciated. 🙏P.S. Using lazy.vim-based setup with
noise.nvim
andnvim-notify
.Beta Was this translation helpful? Give feedback.
All reactions