fix(treesitter): check that buf is loaded in autocommands (#25679)

This commit is contained in:
Maria José Solano 2023-10-17 13:34:39 -07:00 committed by GitHub
parent 272ef27115
commit 3fd7449d5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -366,6 +366,10 @@ function M.inspect_tree(opts)
group = group,
buffer = b,
callback = function()
if not api.nvim_buf_is_loaded(buf) then
return true
end
api.nvim_buf_clear_namespace(buf, pg.ns, 0, -1)
local row = api.nvim_win_get_cursor(w)[1]
local pos = pg:get(row)
@ -438,6 +442,9 @@ function M.inspect_tree(opts)
group = group,
buffer = b,
callback = function()
if not api.nvim_buf_is_loaded(buf) then
return true
end
api.nvim_buf_clear_namespace(buf, pg.ns, 0, -1)
end,
})
@ -449,7 +456,6 @@ function M.inspect_tree(opts)
if not api.nvim_buf_is_loaded(b) then
return true
end
api.nvim_buf_clear_namespace(b, pg.ns, 0, -1)
end,
})