feat(noice): suppress Diagnosing and semantic tokens LSP progress notifications

This commit is contained in:
2026-05-11 12:38:19 -04:00
parent 7f9c380eaa
commit 58fc3e53ac
+9 -5
View File
@@ -463,11 +463,15 @@ lazyload.on_vim_enter(function()
},
routes = {
{
filter = {
event = "lsp",
kind = "progress",
find = "Loading workspace",
},
filter = { event = "lsp", kind = "progress", find = "Loading workspace" },
opts = { skip = true },
},
{
filter = { event = "lsp", kind = "progress", find = "^Diagnosing" },
opts = { skip = true },
},
{
filter = { event = "lsp", kind = "progress", find = "semantic tokens" },
opts = { skip = true },
},
},