Skip to content

Commit 7b0d1a7

Browse files
committed
fix(float): only clear diagnostics for valid buffers
1 parent b73312a commit 7b0d1a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/lazy/view/float.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,12 @@ function M:close()
173173
local win = self.win
174174
self.win = nil
175175
self.buf = nil
176-
vim.diagnostic.reset(Config.ns, buf)
177176
vim.schedule(function()
178177
if win and vim.api.nvim_win_is_valid(win) then
179178
vim.api.nvim_win_close(win, true)
180179
end
181180
if buf and vim.api.nvim_buf_is_valid(buf) then
181+
vim.diagnostic.reset(Config.ns, buf)
182182
vim.api.nvim_buf_delete(buf, { force = true })
183183
end
184184
end)

0 commit comments

Comments
 (0)