Skip to content

Commit 815bb2c

Browse files
committed
feat(text): multiline support and pattern highlights
1 parent 68a8d57 commit 815bb2c

File tree

1 file changed

+66
-20
lines changed

1 file changed

+66
-20
lines changed

lua/lazy/view/text.lua

+66-20
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
local Config = require("lazy.core.config")
22

3-
---@alias TextSegment {str: string, hl?:string, extmark?:table}
3+
---@alias TextSegment {str: string, hl?:string|Extmark}
4+
---@alias Extmark {hl_group?:string, col?:number, end_col?:number}
45

56
---@class Text
67
---@field _lines TextSegment[][]
8+
---@field padding number
79
local Text = {}
810

911
function Text.new()
@@ -16,17 +18,30 @@ function Text.new()
1618
end
1719

1820
---@param str string
19-
---@param hl? string|table
20-
function Text:append(str, hl)
21+
---@param hl? string|Extmark
22+
---@param opts? {indent?: number, prefix?: string}
23+
function Text:append(str, hl, opts)
24+
opts = opts or {}
2125
if #self._lines == 0 then
2226
self:nl()
2327
end
2428

25-
table.insert(self._lines[#self._lines], {
26-
str = str,
27-
hl = type(hl) == "string" and hl or nil,
28-
extmark = type(hl) == "table" and hl or nil,
29-
})
29+
local lines = vim.split(str, "\n")
30+
for l, line in ipairs(lines) do
31+
if opts.prefix then
32+
line = opts.prefix .. line
33+
end
34+
if opts.indent then
35+
line = string.rep(" ", opts.indent) .. line
36+
end
37+
if l > 1 then
38+
self:nl()
39+
end
40+
table.insert(self._lines[#self._lines], {
41+
str = line,
42+
hl = hl,
43+
})
44+
end
3045

3146
return self
3247
end
@@ -36,12 +51,11 @@ function Text:nl()
3651
return self
3752
end
3853

39-
function Text:render(buf, padding)
40-
padding = padding or 0
54+
function Text:render(buf)
4155
local lines = {}
4256

4357
for _, line in ipairs(self._lines) do
44-
local str = (" "):rep(padding)
58+
local str = (" "):rep(self.padding)
4559

4660
for _, segment in ipairs(line) do
4761
str = str .. segment.str
@@ -53,27 +67,59 @@ function Text:render(buf, padding)
5367
vim.api.nvim_buf_set_lines(buf, 0, -1, false, lines)
5468

5569
for l, line in ipairs(self._lines) do
56-
local col = padding
70+
local col = self.padding
5771

5872
for _, segment in ipairs(line) do
5973
local width = vim.fn.strlen(segment.str)
6074

61-
if segment.hl then
62-
vim.api.nvim_buf_set_extmark(buf, Config.ns, l - 1, col, {
63-
hl_group = segment.hl,
64-
end_col = col + width,
65-
})
66-
end
75+
local extmark = segment.hl
76+
if extmark then
77+
if type(extmark) == "string" then
78+
extmark = { hl_group = extmark, end_col = col + width }
79+
end
80+
---@cast extmark Extmark
6781

68-
if segment.extmark then
69-
vim.api.nvim_buf_set_extmark(buf, Config.ns, l - 1, col, segment.extmark)
82+
local extmark_col = extmark.col or col
83+
extmark.col = nil
84+
vim.api.nvim_buf_set_extmark(buf, Config.ns, l - 1, extmark_col, extmark)
7085
end
7186

7287
col = col + width
7388
end
7489
end
7590
end
7691

92+
---@param patterns table<string,string>
93+
function Text:highlight(patterns)
94+
local col = self.padding
95+
local last = self._lines[#self._lines]
96+
---@type TextSegment?
97+
local text
98+
for s, segment in ipairs(last) do
99+
if s == #last then
100+
text = segment
101+
break
102+
end
103+
col = col + vim.fn.strlen(segment.str)
104+
end
105+
if text then
106+
for pattern, hl in pairs(patterns) do
107+
local from, to, match = text.str:find(pattern)
108+
while from do
109+
if match then
110+
from, to = text.str:find(match, from, true)
111+
end
112+
self:append("", {
113+
col = col + from - 1,
114+
end_col = col + to,
115+
hl_group = hl,
116+
})
117+
from, to = text.str:find(pattern, to + 1)
118+
end
119+
end
120+
end
121+
end
122+
77123
function Text:trim()
78124
while #self._lines > 0 and #self._lines[1] == 0 do
79125
table.remove(self._lines, 1)

0 commit comments

Comments
 (0)