Merge branch 'main' into feat/conflict-ui

This commit is contained in:
Barrett Ruth 2026-02-09 13:24:51 -05:00 committed by GitHub
commit c9e2722d19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 30 additions and 14 deletions

View file

@ -203,7 +203,9 @@ local function create_debounced_highlight(bufnr)
timer = nil
t:close()
end
highlight_buffer(bufnr)
if vim.api.nvim_buf_is_valid(bufnr) then
highlight_buffer(bufnr)
end
end)
)
end