Skip to content

Commit 88869e6

Browse files
committed
feat(text): center text
1 parent 7303017 commit 88869e6

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

lua/lazy/view/text.lua

+16
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,22 @@ function Text:highlight(patterns)
120120
end
121121
end
122122

123+
function Text:center()
124+
local last = self._lines[#self._lines]
125+
if not last then
126+
return
127+
end
128+
local width = 0
129+
for _, segment in ipairs(last) do
130+
width = width + vim.fn.strwidth(segment.str)
131+
end
132+
width = vim.api.nvim_win_get_width(self.win) - 2 * self.padding - width
133+
table.insert(last, 1, {
134+
str = string.rep(" ", math.floor(width / 2 + 0.5)),
135+
})
136+
return self
137+
end
138+
123139
function Text:trim()
124140
while #self._lines > 0 and #self._lines[1] == 0 do
125141
table.remove(self._lines, 1)

0 commit comments

Comments
 (0)