@@ -112,38 +112,41 @@ function M:get_plugin(row)
112
112
end
113
113
114
114
function M :title ()
115
- self :nl (): nl ()
115
+ self :nl ()
116
116
local modes = vim .tbl_filter (function (c )
117
117
return c .button
118
118
end , ViewConfig .get_commands ())
119
119
120
- for c , mode in ipairs (modes ) do
121
- local title = " " .. mode .name :sub (1 , 1 ):upper () .. mode .name :sub (2 ) .. " (" .. mode .key .. " ) "
122
- if mode .name == " home" then
123
- if self .view .state .mode == " home" then
124
- title = " lazy.nvim " .. Config .options .ui .icons .lazy
125
- else
126
- title = " lazy.nvim (H) "
120
+ if Config .options .ui .pills then
121
+ self :nl ()
122
+ for c , mode in ipairs (modes ) do
123
+ local title = " " .. mode .name :sub (1 , 1 ):upper () .. mode .name :sub (2 ) .. " (" .. mode .key .. " ) "
124
+ if mode .name == " home" then
125
+ if self .view .state .mode == " home" then
126
+ title = " lazy.nvim " .. Config .options .ui .icons .lazy
127
+ else
128
+ title = " lazy.nvim (H) "
129
+ end
127
130
end
128
- end
129
131
130
- if self .view .state .mode == mode .name then
131
- if mode .name == " home" then
132
- self :append (title , " LazyH1" , { wrap = true })
132
+ if self .view .state .mode == mode .name then
133
+ if mode .name == " home" then
134
+ self :append (title , " LazyH1" , { wrap = true })
135
+ else
136
+ self :append (title , " LazyButtonActive" , { wrap = true })
137
+ self :highlight ({ [" %(.%)" ] = " LazySpecial" })
138
+ end
133
139
else
134
- self :append (title , " LazyButtonActive " , { wrap = true })
140
+ self :append (title , " LazyButton " , { wrap = true })
135
141
self :highlight ({ [" %(.%)" ] = " LazySpecial" })
136
142
end
137
- else
138
- self :append (title , " LazyButton" , { wrap = true })
139
- self :highlight ({ [" %(.%)" ] = " LazySpecial" })
140
- end
141
- if c == # modes then
142
- break
143
+ if c == # modes then
144
+ break
145
+ end
146
+ self :append (" " )
143
147
end
144
- self :append ( " " )
148
+ self :nl ( )
145
149
end
146
- self :nl ()
147
150
if self .progress .done < self .progress .total then
148
151
self :progressbar ()
149
152
end
0 commit comments