Skip to content

Commit b00d6f7

Browse files
authored
fix(ui): don't pad empty lines (#768)
1 parent bb5cc9e commit b00d6f7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lua/lazy/view/text.lua

+3
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ function Text:render(buf)
7272
str = str .. segment.str
7373
end
7474

75+
if str:match("^%s*$") then
76+
str = ""
77+
end
7578
table.insert(lines, str)
7679
end
7780

0 commit comments

Comments
 (0)