Skip to content

Commit 98ba47e

Browse files
committed
fix(ui): issue with rendering empty lines. Fixes #770
1 parent 5b7b8ee commit 98ba47e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/lazy/view/text.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function Text:render(buf)
8888
local width = vim.fn.strlen(segment.str)
8989

9090
local extmark = segment.hl
91-
if extmark then
91+
if extmark and width > 0 then
9292
if type(extmark) == "string" then
9393
extmark = { hl_group = extmark, end_col = col + width }
9494
end

0 commit comments

Comments
 (0)