Skip to content

Commit dbe0e29

Browse files
committed
fix(ui): don' render extmarks for empty lines
1 parent ceb4136 commit dbe0e29

File tree

1 file changed

+24
-22
lines changed

1 file changed

+24
-22
lines changed

lua/lazy/view/text.lua

+24-22
Original file line numberDiff line numberDiff line change
@@ -82,30 +82,32 @@ function Text:render(buf)
8282
vim.api.nvim_buf_clear_namespace(buf, Config.ns, 0, -1)
8383

8484
for l, line in ipairs(self._lines) do
85-
local col = self.padding
86-
87-
for _, segment in ipairs(line) do
88-
local width = vim.fn.strlen(segment.str)
89-
90-
local extmark = segment.hl
91-
if extmark and width > 0 then
92-
if type(extmark) == "string" then
93-
extmark = { hl_group = extmark, end_col = col + width }
85+
if lines[l] ~= "" then
86+
local col = self.padding
87+
88+
for _, segment in ipairs(line) do
89+
local width = vim.fn.strlen(segment.str)
90+
91+
local extmark = segment.hl
92+
if extmark then
93+
if type(extmark) == "string" then
94+
extmark = { hl_group = extmark, end_col = col + width }
95+
end
96+
---@cast extmark Extmark
97+
98+
local extmark_col = extmark.col or col
99+
extmark.col = nil
100+
local ok = pcall(vim.api.nvim_buf_set_extmark, buf, Config.ns, l - 1, extmark_col, extmark)
101+
if not ok then
102+
Util.error(
103+
"Failed to set extmark. Please report a bug with this info:\n"
104+
.. vim.inspect({ segment = segment, line = line })
105+
)
106+
end
94107
end
95-
---@cast extmark Extmark
96-
97-
local extmark_col = extmark.col or col
98-
extmark.col = nil
99-
local ok = pcall(vim.api.nvim_buf_set_extmark, buf, Config.ns, l - 1, extmark_col, extmark)
100-
if not ok then
101-
Util.error(
102-
"Failed to set extmark. Please report a bug with this info:\n"
103-
.. vim.inspect({ segment = segment, line = line })
104-
)
105-
end
106-
end
107108

108-
col = col + width
109+
col = col + width
110+
end
109111
end
110112
end
111113
end

0 commit comments

Comments
 (0)