@@ -141,10 +141,10 @@ function M:title()
141
141
if self .view .state .mode ~= " help" and self .view .state .mode ~= " profile" and self .view .state .mode ~= " debug" then
142
142
if self .progress .done < self .progress .total then
143
143
self :append (" Tasks: " , " LazyH2" )
144
- self :append (self .progress .done .. " /" .. self .progress .total , " LazyMuted " )
144
+ self :append (self .progress .done .. " /" .. self .progress .total , " LazyComment " )
145
145
else
146
146
self :append (" Total: " , " LazyH2" )
147
- self :append (# self .plugins .. " plugins" , " LazyMuted " )
147
+ self :append (# self .plugins .. " plugins" , " LazyComment " )
148
148
end
149
149
self :nl ():nl ()
150
150
end
@@ -174,7 +174,7 @@ function M:help()
174
174
self :append (" - " , " LazySpecial" , { indent = 2 })
175
175
self :append (title , " Title" )
176
176
if mode .key then
177
- self :append (" <" .. mode .key .. " >" , " LazyKey " )
177
+ self :append (" <" .. mode .key .. " >" , " LazyProp " )
178
178
end
179
179
self :append (" " .. (mode .desc or " " )):nl ()
180
180
end
@@ -187,7 +187,7 @@ function M:help()
187
187
self :append (" - " , " LazySpecial" , { indent = 2 })
188
188
self :append (title , " Title" )
189
189
if mode .key_plugin then
190
- self :append (" <" .. mode .key_plugin .. " >" , " LazyKey " )
190
+ self :append (" <" .. mode .key_plugin .. " >" , " LazyProp " )
191
191
end
192
192
self :append (" " .. (mode .desc_plugin or mode .desc )):nl ()
193
193
end
@@ -225,7 +225,7 @@ function M:section(section)
225
225
226
226
local count = # section_plugins
227
227
if count > 0 then
228
- self :append (section .title , " LazyH2" ):append (" (" .. count .. " )" , " LazyMuted " ):nl ()
228
+ self :append (section .title , " LazyH2" ):append (" (" .. count .. " )" , " LazyComment " ):nl ()
229
229
for _ , plugin in ipairs (section_plugins ) do
230
230
self :plugin (plugin )
231
231
end
@@ -306,21 +306,20 @@ function M:reason(reason, opts)
306
306
if key == " keys" then
307
307
value = type (value ) == " string" and value or value [1 ]
308
308
end
309
- local hl = " LazyHandler " .. key :sub (1 , 1 ):upper () .. key :sub (2 )
309
+ local hl = " LazyReason " .. key :sub (1 , 1 ):upper () .. key :sub (2 )
310
310
local icon = Config .options .ui .icons [key ]
311
311
if icon then
312
312
self :append (icon .. " " , hl )
313
313
self :append (value , hl )
314
314
else
315
- self :append (key .. " " , " @field " )
315
+ self :append (key .. " " , hl )
316
316
self :append (value , hl )
317
317
end
318
318
end
319
319
end
320
320
if time and opts .time_right then
321
321
self :append (time , " Bold" )
322
322
end
323
- -- self:append(")", "Conceal")
324
323
end
325
324
326
325
--- @param plugin LazyPlugin
@@ -358,11 +357,11 @@ end
358
357
--- @param plugin LazyPlugin
359
358
function M :plugin (plugin )
360
359
if plugin ._ .loaded then
361
- self :append (" ● " , " LazySpecial" ):append (plugin .name )
360
+ self :append (" " .. Config . options . ui . icons . loaded .. " " , " LazySpecial" ):append (plugin .name )
362
361
elseif plugin ._ .cond == false then
363
- self :append (" ○ " , " LazyNoCond" ):append (plugin .name )
362
+ self :append (" " .. Config . options . ui . icons . not_loaded .. " " , " LazyNoCond" ):append (plugin .name )
364
363
else
365
- self :append (" ○ " , " LazySpecial" ):append (plugin .name )
364
+ self :append (" " .. Config . options . ui . icons . not_loaded .. " " , " LazySpecial" ):append (plugin .name )
366
365
end
367
366
local plugin_start = self :row ()
368
367
if plugin ._ .loaded then
@@ -382,22 +381,19 @@ end
382
381
--- @param plugin LazyPlugin
383
382
function M :tasks (plugin )
384
383
for _ , task in ipairs (plugin ._ .tasks or {}) do
385
- if self .view . state . plugin == plugin . name then
386
- self :append (" ✔ [task] " , " Title" , { indent = 4 }):append (task .name )
384
+ if self .view : is_selected ( plugin ) then
385
+ self :append (Config . options . ui . icons . task .. " [task] " , " Title" , { indent = 4 }):append (task .name )
387
386
self :append (" " .. math.floor ((task :time ()) * 100 ) / 100 .. " ms" , " Bold" )
388
387
self :nl ()
389
388
end
390
- if task .name == " log" and not task .error then
389
+ if task .error then
390
+ self :append (vim .trim (task .error ), " LazyTaskError" , { indent = 6 })
391
+ self :nl ()
392
+ elseif task .name == " log" then
391
393
self :log (task )
392
- elseif task .error or self .view :is_selected (plugin ) then
393
- if task .error then
394
- self :append (vim .trim (task .error ), " LazyError" , { indent = 4 , prefix = " │ " })
395
- self :nl ()
396
- end
397
- if task .output ~= " " and task .output ~= task .error then
398
- self :append (vim .trim (task .output ), " MsgArea" , { indent = 4 , prefix = " │ " })
399
- self :nl ()
400
- end
394
+ elseif self .view :is_selected (plugin ) and task .output ~= " " and task .output ~= task .error then
395
+ self :append (vim .trim (task .output ), " LazyTaskOutput" , { indent = 6 })
396
+ self :nl ()
401
397
end
402
398
end
403
399
end
@@ -414,15 +410,15 @@ function M:log(task)
414
410
end
415
411
self :append (ref :sub (1 , 7 ) .. " " , " LazyCommit" , { indent = 6 })
416
412
self :append (vim .trim (msg )):highlight ({
417
- [" #%d+" ] = " Number " ,
418
- [" ^%S+:" ] = " Title " ,
419
- [" ^%S+(%(.*%)):" ] = " Italic " ,
413
+ [" #%d+" ] = " LazyCommitIssue " ,
414
+ [" ^%S+:" ] = " LazyCommitType " ,
415
+ [" ^%S+(%(.*%)):" ] = " LazyCommitScope " ,
420
416
[" `.-`" ] = " @text.literal.markdown_inline" ,
421
417
[" %*.-%*" ] = " Italic" ,
422
418
[" %*%*.-%*%*" ] = " Bold" ,
423
419
})
424
420
-- string.gsub
425
- self :append (" " .. time , " Comment " )
421
+ self :append (" " .. time , " LazyComment " )
426
422
self :nl ()
427
423
end
428
424
self :nl ()
433
429
function M :details (plugin )
434
430
--- @type string[][]
435
431
local props = {}
436
- table.insert (props , { " dir" , plugin .dir , " @text.reference " })
432
+ table.insert (props , { " dir" , plugin .dir , " LazyDir " })
437
433
if plugin .url then
438
- table.insert (props , { " url" , (plugin .url :gsub (" %.git$" , " " )), " @text.reference " })
434
+ table.insert (props , { " url" , (plugin .url :gsub (" %.git$" , " " )), " LazyUrl " })
439
435
end
440
436
local git = Git .info (plugin .dir , true )
441
437
if git then
@@ -483,7 +479,7 @@ function M:details(plugin)
483
479
width = math.max (width , # prop [1 ])
484
480
end
485
481
for _ , prop in ipairs (props ) do
486
- self :append (prop [1 ] .. string.rep (" " , width - # prop [1 ] + 1 ), " LazyKey " , { indent = 6 })
482
+ self :append (prop [1 ] .. string.rep (" " , width - # prop [1 ] + 1 ), " LazyProp " , { indent = 6 })
487
483
if type (prop [2 ]) == " function" then
488
484
prop [2 ]()
489
485
else
@@ -508,12 +504,6 @@ function M:profile()
508
504
:nl ()
509
505
510
506
self :nl ()
511
- local symbols = {
512
- " ●" ,
513
- " ➜" ,
514
- " ★" ,
515
- " ‒" ,
516
- }
517
507
518
508
--- @param a LazyProfile
519
509
--- @param b LazyProfile
@@ -543,7 +533,7 @@ function M:profile()
543
533
end
544
534
local data = type (entry .data ) == " string" and { source = entry .data } or entry .data
545
535
data .time = entry .time
546
- local symbol = symbols [ depth ] or symbols [ # symbols ]
536
+ local symbol = M . list_icon ( depth )
547
537
self :append ((" " ):rep (depth )):append (symbol , " LazySpecial" ):append (" " )
548
538
self :reason (data , { time_right = true })
549
539
self :nl ()
@@ -557,12 +547,17 @@ function M:profile()
557
547
end
558
548
end
559
549
550
+ function M .list_icon (depth )
551
+ local symbols = Config .options .ui .icons .list
552
+ return symbols [(depth - 1 ) % # symbols + 1 ]
553
+ end
554
+
560
555
function M :debug ()
561
556
self :append (" Active Handlers" , " LazyH2" ):nl ()
562
557
self
563
558
:append (
564
559
" This shows only the lazy handlers that are still active. When a plugin loads, its handlers are removed" ,
565
- " Comment " ,
560
+ " LazyComment " ,
566
561
{ indent = 2 }
567
562
)
568
563
:nl ()
@@ -571,6 +566,7 @@ function M:debug()
571
566
Util .foreach (handler .active , function (value , plugins )
572
567
value = type (value ) == " table" and value [1 ] or value
573
568
if not vim .tbl_isempty (plugins ) then
569
+ --- @type string[]
574
570
plugins = vim .tbl_values (plugins )
575
571
table.sort (plugins )
576
572
self :append (" ● " , " LazySpecial" , { indent = 2 })
@@ -590,7 +586,7 @@ function M:debug()
590
586
local kb = math.floor (# entry .chunk / 10.24 ) / 100
591
587
self :append (" ● " , " LazySpecial" , { indent = 2 }):append (modname ):append (" " .. kb .. " Kb" , " Bold" )
592
588
if entry .modpath ~= modname then
593
- self :append (" " .. vim .fn .fnamemodify (entry .modpath , " :p:~:." ), " Comment " )
589
+ self :append (" " .. vim .fn .fnamemodify (entry .modpath , " :p:~:." ), " LazyComment " )
594
590
end
595
591
self :nl ()
596
592
end )
0 commit comments