Skip to content

Commit 9dce081

Browse files
committed
feat(ui): added support for setting a title of the lazy window. Fixes #814
1 parent 97c2f88 commit 9dce081

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ require("lazy").setup({
107107
| **keys** | `string?` or `string[]` or `LazyKeys[]` or `fun(self:LazyPlugin, keys:string[]):(string \| LazyKeys)[]` | Lazy-load on key mapping |
108108
| **module** | `false?` | Do not automatically load this Lua module when it's required somewhere |
109109
| **priority** | `number?` | Only useful for **start** plugins (`lazy=false`) to force loading certain plugins first. Default priority is `50`. It's recommended to set this to a high number for colorschemes. |
110-
| **optional** | `boolean?` | When a spec is tagged optional, it will only be included in the final spec, when the same plugin has been specified at least once somewhere else without `optional`. This is mainly useful for Neovim distros, to allow setting options on plugins that may/may not be part of the user's plugins |
110+
| **optional** | `boolean?` | When a spec is tagged optional, it will only be included in the final spec, when the same plugin has been specified at least once somewhere else without `optional`. This is mainly useful for Neovim distros, to allow setting options on plugins that may/may not be part of the user's plugins |
111111

112112
### Lazy Loading
113113

@@ -310,7 +310,7 @@ return {
310310
git = {
311311
-- defaults for the `Lazy log` command
312312
-- log = { "-10" }, -- show the last 10 commits
313-
log = { "--since=3 days ago" }, -- show commits from the last 3 days
313+
log = { "-8" }, -- show commits from the last 3 days
314314
timeout = 120, -- kill processes that take more than 2 minutes
315315
url_format = "https://github.com/%s.git",
316316
-- lazy.nvim requires git >=2.19.0. If you really want to use lazy with an older version,
@@ -337,6 +337,8 @@ return {
337337
wrap = true, -- wrap the lines in the ui
338338
-- The border to use for the UI window. Accepts same border values as |nvim_open_win()|.
339339
border = "none",
340+
title = nil, ---@type string only works when border is not "none"
341+
title_pos = "center", ---@type "center" | "left" | "right"
340342
icons = {
341343
cmd = "",
342344
config = "",
@@ -757,6 +759,7 @@ To uninstall **lazy.nvim**, you need to remove the following files and directori
757759
| **LazyDir** | **_@text.reference_** | directory |
758760
| **LazyH1** | **_IncSearch_** | home button |
759761
| **LazyH2** | **_Bold_** | titles |
762+
| **LazyLocal** | **_Constant_** | |
760763
| **LazyNoCond** | **_DiagnosticWarn_** | unloaded icon for a plugin where `cond()` was false |
761764
| **LazyNormal** | **_NormalFloat_** | |
762765
| **LazyProgressDone** | **_Constant_** | progress bar done |

lua/lazy/core/config.lua

+2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ M.defaults = {
4848
wrap = true, -- wrap the lines in the ui
4949
-- The border to use for the UI window. Accepts same border values as |nvim_open_win()|.
5050
border = "none",
51+
title = nil, ---@type string only works when border is not "none"
52+
title_pos = "center", ---@type "center" | "left" | "right"
5153
icons = {
5254
cmd = "",
5355
config = "",

lua/lazy/view/float.lua

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ local ViewConfig = require("lazy.view.config")
99
---@field zindex? number
1010
---@field style? "" | "minimal"
1111
---@field border? "none" | "single" | "double" | "rounded" | "solid" | "shadow"
12+
---@field title? string
13+
---@field title_pos? "center" | "left" | "right"
1214

1315
---@class LazyFloat
1416
---@field buf number
@@ -50,6 +52,8 @@ function M:init(opts)
5052
border = self.opts.border,
5153
zindex = self.opts.zindex,
5254
noautocmd = true,
55+
title = self.opts.title,
56+
title_pos = self.opts.title and self.opts.title_pos or nil,
5357
}
5458
self:mount()
5559
self:on_key(ViewConfig.keys.close, self.close)

lua/lazy/view/init.lua

+4-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ end
5050
function M.create()
5151
local self = setmetatable({}, { __index = setmetatable(M, { __index = Float }) })
5252
---@cast self LazyView
53-
Float.init(self)
53+
Float.init(self, {
54+
title = Config.options.ui.title,
55+
title_pos = Config.options.ui.title_pos,
56+
})
5457

5558
if Config.options.ui.wrap then
5659
vim.wo[self.win].wrap = true

0 commit comments

Comments
 (0)