Skip to content

Commit 04dea38

Browse files
committed
fix: reset diagnostics when lazy view buffer closes
1 parent 3e8fbaf commit 04dea38

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lua/lazy/view/init.lua

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
local Util = require("lazy.util")
22
local Render = require("lazy.view.render")
3+
local Config = require("lazy.core.config")
34

45
local M = {}
56

@@ -42,6 +43,7 @@ function M.show()
4243

4344
local function close()
4445
M._buf = nil
46+
vim.diagnostic.reset(Config.ns, buf)
4547

4648
if vim.api.nvim_buf_is_valid(buf) then
4749
vim.api.nvim_buf_delete(buf, {

0 commit comments

Comments
 (0)