Skip to content

Commit d6fc848

Browse files
committed
feat: added config.ui.wrap and improved wrapping when wrap=true. Fixes #422
1 parent c389ad5 commit d6fc848

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

lua/lazy/core/config.lua

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ M.defaults = {
3737
ui = {
3838
-- a number <1 is a percentage., >1 is a fixed size
3939
size = { width = 0.8, height = 0.8 },
40+
wrap = true, -- wrap the lines in the ui
4041
-- The border to use for the UI window. Accepts same border values as |nvim_open_win()|.
4142
border = "none",
4243
icons = {

lua/lazy/view/init.lua

+9
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,15 @@ function M.create()
5252
---@cast self LazyView
5353
Float.init(self)
5454

55+
if Config.options.ui.wrap then
56+
vim.wo[self.win].wrap = true
57+
vim.wo[self.win].linebreak = true
58+
vim.wo[self.win].breakindent = true
59+
-- vim.wo[self.win].breakindentopt = "shift:8"
60+
else
61+
vim.wo[self.win].wrap = false
62+
end
63+
5564
require("lazy.view.colors").setup()
5665

5766
self.state = vim.deepcopy(default_state)

lua/lazy/view/render.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -127,13 +127,13 @@ function M:title()
127127

128128
if self.view.state.mode == mode.name then
129129
if mode.name == "home" then
130-
self:append(title, "LazyH1")
130+
self:append(title, "LazyH1", { wrap = true })
131131
else
132-
self:append(title, "LazyButtonActive")
132+
self:append(title, "LazyButtonActive", { wrap = true })
133133
self:highlight({ ["%(.%)"] = "LazySpecial" })
134134
end
135135
else
136-
self:append(title, "LazyButton")
136+
self:append(title, "LazyButton", { wrap = true })
137137
self:highlight({ ["%(.%)"] = "LazySpecial" })
138138
end
139139
self:append(" ")

lua/lazy/view/text.lua

+8-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ end
2121

2222
---@param str string
2323
---@param hl? string|Extmark
24-
---@param opts? {indent?: number, prefix?: string}
24+
---@param opts? {indent?: number, prefix?: string, wrap?: boolean}
2525
function Text:append(str, hl, opts)
2626
opts = opts or {}
2727
if #self._lines == 0 then
@@ -39,7 +39,13 @@ function Text:append(str, hl, opts)
3939
if l > 1 then
4040
self:nl()
4141
end
42-
if str ~= "" and self:col() > 0 and self:col() + vim.fn.strwidth(line) + self.padding > self.wrap then
42+
if
43+
Config.options.ui.wrap
44+
and opts.wrap
45+
and str ~= ""
46+
and self:col() > 0
47+
and self:col() + vim.fn.strwidth(line) + self.padding > self.wrap
48+
then
4349
self:nl()
4450
end
4551
table.insert(self._lines[#self._lines], {

0 commit comments

Comments
 (0)