Skip to content

Commit

Permalink
Excluding more annoying error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
zmre committed Nov 4, 2024
1 parent 91a811e commit dba136d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pwnvim/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,9 @@ M.diagnostics = function()
filter = { event = "msg_show", min_height = 20 },
},
-- suppress "E36: Not enough room" error
{ filter = { event = "msg_show", find = "E36" }, opts = { skip = true } }
{ filter = { event = "msg_show", find = "E36" }, opts = { skip = true } },
-- suppress "semantic_tokens.lua" error
{ filter = { event = "msg_show", find = "semantic_tokens.lua" }, opts = { skip = true } }
},
})
end
Expand Down

0 comments on commit dba136d

Please sign in to comment.