Skip to content

Commit 94472b8

Browse files
committed
feat(float): floats can now be persistent
1 parent e6bf3a0 commit 94472b8

File tree

3 files changed

+61
-10
lines changed

3 files changed

+61
-10
lines changed

lua/lazy/util.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ function M.float_term(cmd, opts)
112112
once = true,
113113
buffer = float.buf,
114114
callback = function()
115-
float:close()
115+
float:close({ wipe = true })
116116
vim.cmd.checktime()
117117
end,
118118
})

lua/lazy/view/float.lua

+59-9
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ local ViewConfig = require("lazy.view.config")
1111
---@field border? "none" | "single" | "double" | "rounded" | "solid" | "shadow"
1212
---@field title? string
1313
---@field title_pos? "center" | "left" | "right"
14+
---@field persistent? boolean
15+
---@field ft? string
16+
---@field noautocmd? boolean
1417

1518
---@class LazyFloat
1619
---@field buf number
@@ -51,7 +54,7 @@ function M:init(opts)
5154
style = self.opts.style ~= "" and self.opts.style or nil,
5255
border = self.opts.border,
5356
zindex = self.opts.zindex,
54-
noautocmd = true,
57+
noautocmd = self.opts.noautocmd,
5558
title = self.opts.title,
5659
title_pos = self.opts.title and self.opts.title_pos or nil,
5760
}
@@ -94,27 +97,32 @@ function M:layout()
9497
end
9598

9699
function M:mount()
97-
if self.opts.file then
100+
if self:buf_valid() then
101+
-- keep existing buffer
102+
self.buf = self.buf
103+
elseif self.opts.file then
98104
self.buf = vim.fn.bufadd(self.opts.file)
99105
vim.fn.bufload(self.buf)
100106
vim.bo[self.buf].modifiable = false
101107
elseif self.opts.buf then
102108
self.buf = self.opts.buf
103109
else
104-
self.buf = vim.api.nvim_create_buf(false, false)
110+
self.buf = vim.api.nvim_create_buf(false, true)
105111
end
106112

107113
self:layout()
108114
self.win = vim.api.nvim_open_win(self.buf, true, self.win_opts)
109115
self:focus()
110116

111-
vim.bo[self.buf].buftype = "nofile"
117+
if vim.bo[self.buf].buftype == "" then
118+
vim.bo[self.buf].buftype = "nofile"
119+
end
112120
if vim.bo[self.buf].filetype == "" then
113-
vim.bo[self.buf].filetype = "lazy"
121+
vim.bo[self.buf].filetype = self.opts.ft or "lazy"
114122
end
115123

116124
local function opts()
117-
vim.bo[self.buf].bufhidden = "wipe"
125+
vim.bo[self.buf].bufhidden = self.opts.persistent and "hide" or "wipe"
118126
vim.wo[self.win].conceallevel = 3
119127
vim.wo[self.win].foldenable = false
120128
vim.wo[self.win].spell = false
@@ -179,22 +187,64 @@ function M:on_key(key, fn, desc)
179187
})
180188
end
181189

182-
function M:close()
190+
---@param opts? {wipe:boolean}
191+
function M:close(opts)
183192
local buf = self.buf
184193
local win = self.win
194+
local wipe = opts and opts.wipe
195+
if wipe == nil then
196+
wipe = not self.opts.persistent
197+
end
198+
185199
self.win = nil
186-
self.buf = nil
200+
if wipe then
201+
self.buf = nil
202+
end
187203
vim.schedule(function()
188204
if win and vim.api.nvim_win_is_valid(win) then
189205
vim.api.nvim_win_close(win, true)
190206
end
191-
if buf and vim.api.nvim_buf_is_valid(buf) then
207+
if wipe and buf and vim.api.nvim_buf_is_valid(buf) then
192208
vim.diagnostic.reset(Config.ns, buf)
193209
vim.api.nvim_buf_delete(buf, { force = true })
194210
end
195211
end)
196212
end
197213

214+
function M:win_valid()
215+
return self.win and vim.api.nvim_win_is_valid(self.win)
216+
end
217+
218+
function M:buf_valid()
219+
return self.buf and vim.api.nvim_buf_is_valid(self.buf)
220+
end
221+
222+
function M:hide()
223+
if self:win_valid() then
224+
self:close({ wipe = false })
225+
end
226+
end
227+
228+
function M:toggle()
229+
if self:win_valid() then
230+
self:hide()
231+
return false
232+
else
233+
self:show()
234+
return true
235+
end
236+
end
237+
238+
function M:show()
239+
if self:win_valid() then
240+
self:focus()
241+
elseif self:buf_valid() then
242+
self:mount()
243+
else
244+
error("LazyFloat: buffer closed")
245+
end
246+
end
247+
198248
function M:focus()
199249
vim.api.nvim_set_current_win(self.win)
200250

lua/lazy/view/init.lua

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ function M.create()
5353
Float.init(self, {
5454
title = Config.options.ui.title,
5555
title_pos = Config.options.ui.title_pos,
56+
noautocmd = true,
5657
})
5758

5859
if Config.options.ui.wrap then

0 commit comments

Comments
 (0)