docs: remove redundant comments

This commit is contained in:
2026-05-04 15:26:17 +02:00
parent 28840a9e06
commit fd5408c013
2 changed files with 0 additions and 4 deletions
-3
View File
@@ -93,9 +93,6 @@ function Row:render(buf)
} }
end end
-- One extmark per row. Extmarks auto-shift with edits, so multiple from
-- prior refreshes can end up on the same row; pick the first and drop
-- the rest, then reuse its id for an atomic update.
local marks = vim.api.nvim_buf_get_extmarks( local marks = vim.api.nvim_buf_get_extmarks(
buf, buf,
NS, NS,
-1
View File
@@ -257,7 +257,6 @@ function Popup:ensure_buffer()
vim.bo[bufnr].buftype = "nofile" vim.bo[bufnr].buftype = "nofile"
vim.bo[bufnr].bufhidden = "hide" vim.bo[bufnr].bufhidden = "hide"
vim.bo[bufnr].swapfile = false vim.bo[bufnr].swapfile = false
-- Markdown parser may not be installed; fall back to no highlighting.
pcall(vim.treesitter.start, bufnr, "markdown") pcall(vim.treesitter.start, bufnr, "markdown")
self.bufnr = bufnr self.bufnr = bufnr
return bufnr return bufnr