1
1
local Config = require (" lazy.core.config" )
2
2
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 }
4
5
5
6
--- @class Text
6
7
--- @field _lines TextSegment[][]
8
+ --- @field padding number
7
9
local Text = {}
8
10
9
11
function Text .new ()
@@ -16,17 +18,30 @@ function Text.new()
16
18
end
17
19
18
20
--- @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 {}
21
25
if # self ._lines == 0 then
22
26
self :nl ()
23
27
end
24
28
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
30
45
31
46
return self
32
47
end
@@ -36,12 +51,11 @@ function Text:nl()
36
51
return self
37
52
end
38
53
39
- function Text :render (buf , padding )
40
- padding = padding or 0
54
+ function Text :render (buf )
41
55
local lines = {}
42
56
43
57
for _ , line in ipairs (self ._lines ) do
44
- local str = (" " ):rep (padding )
58
+ local str = (" " ):rep (self . padding )
45
59
46
60
for _ , segment in ipairs (line ) do
47
61
str = str .. segment .str
@@ -53,27 +67,59 @@ function Text:render(buf, padding)
53
67
vim .api .nvim_buf_set_lines (buf , 0 , - 1 , false , lines )
54
68
55
69
for l , line in ipairs (self ._lines ) do
56
- local col = padding
70
+ local col = self . padding
57
71
58
72
for _ , segment in ipairs (line ) do
59
73
local width = vim .fn .strlen (segment .str )
60
74
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
67
81
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 )
70
85
end
71
86
72
87
col = col + width
73
88
end
74
89
end
75
90
end
76
91
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
+
77
123
function Text :trim ()
78
124
while # self ._lines > 0 and # self ._lines [1 ] == 0 do
79
125
table.remove (self ._lines , 1 )
0 commit comments