Skip to content

Commit 84266b9

Browse files
3719e04folke
andauthored
feat(view): add option ui.pills. Set to false to disable the top buttons in the lazy window (#938)
* add option `ui.button` * add option `ui.button` * refactor: rename button to pills --------- Co-authored-by: Folke Lemaitre <[email protected]>
1 parent 25beed5 commit 84266b9

File tree

3 files changed

+28
-21
lines changed

3 files changed

+28
-21
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,8 @@ return {
339339
border = "none",
340340
title = nil, ---@type string only works when border is not "none"
341341
title_pos = "center", ---@type "center" | "left" | "right"
342+
-- Show pills on top of the Lazy window
343+
pills = true, ---@type boolean
342344
icons = {
343345
cmd = "",
344346
config = "",

lua/lazy/core/config.lua

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ M.defaults = {
5050
border = "none",
5151
title = nil, ---@type string only works when border is not "none"
5252
title_pos = "center", ---@type "center" | "left" | "right"
53+
-- Show pills on top of the Lazy window
54+
pills = true, ---@type boolean
5355
icons = {
5456
cmd = "",
5557
config = "",

lua/lazy/view/render.lua

+24-21
Original file line numberDiff line numberDiff line change
@@ -112,38 +112,41 @@ function M:get_plugin(row)
112112
end
113113

114114
function M:title()
115-
self:nl():nl()
115+
self:nl()
116116
local modes = vim.tbl_filter(function(c)
117117
return c.button
118118
end, ViewConfig.get_commands())
119119

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
127130
end
128-
end
129131

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
133139
else
134-
self:append(title, "LazyButtonActive", { wrap = true })
140+
self:append(title, "LazyButton", { wrap = true })
135141
self:highlight({ ["%(.%)"] = "LazySpecial" })
136142
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(" ")
143147
end
144-
self:append(" ")
148+
self:nl()
145149
end
146-
self:nl()
147150
if self.progress.done < self.progress.total then
148151
self:progressbar()
149152
end

0 commit comments

Comments
 (0)