mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-20 13:26:45 +00:00
fix(ui): special handling for floats closed before VimEnter. Seems that WinClosed events dont execute before that. Fixes #1390
This commit is contained in:
parent
d37a76b871
commit
eefb8974d6
3 changed files with 89 additions and 26 deletions
|
@ -24,6 +24,7 @@ local ViewConfig = require("lazy.view.config")
|
|||
---@field win_opts LazyWinOpts
|
||||
---@field backdrop_buf number
|
||||
---@field backdrop_win number
|
||||
---@field id number
|
||||
---@overload fun(opts?:LazyFloatOptions):LazyFloat
|
||||
local M = {}
|
||||
|
||||
|
@ -33,6 +34,12 @@ setmetatable(M, {
|
|||
end,
|
||||
})
|
||||
|
||||
local _id = 0
|
||||
local function next_id()
|
||||
_id = _id + 1
|
||||
return _id
|
||||
end
|
||||
|
||||
---@param opts? LazyFloatOptions
|
||||
function M.new(opts)
|
||||
local self = setmetatable({}, { __index = M })
|
||||
|
@ -42,6 +49,7 @@ end
|
|||
---@param opts? LazyFloatOptions
|
||||
function M:init(opts)
|
||||
require("lazy.view.colors").setup()
|
||||
self.id = next_id()
|
||||
self.opts = vim.tbl_deep_extend("force", {
|
||||
size = Config.options.ui.size,
|
||||
style = "minimal",
|
||||
|
@ -65,8 +73,13 @@ function M:init(opts)
|
|||
title_pos = self.opts.title and self.opts.title_pos or nil,
|
||||
}
|
||||
self:mount()
|
||||
self:on_key(ViewConfig.keys.close, self.close)
|
||||
self:on({ "WinLeave", "BufDelete", "BufHidden" }, self.close, { once = false })
|
||||
self:on("VimEnter", function()
|
||||
vim.schedule(function()
|
||||
if not self:win_valid() then
|
||||
self:close()
|
||||
end
|
||||
end)
|
||||
end, { buffer = false })
|
||||
return self
|
||||
end
|
||||
|
||||
|
@ -138,7 +151,13 @@ function M:mount()
|
|||
|
||||
self:layout()
|
||||
self.win = vim.api.nvim_open_win(self.buf, true, self.win_opts)
|
||||
self:on("WinClosed", function()
|
||||
self:close()
|
||||
self:augroup(true)
|
||||
end, { win = true })
|
||||
self:focus()
|
||||
self:on_key(ViewConfig.keys.close, self.close)
|
||||
self:on({ "BufDelete", "BufHidden" }, self.close)
|
||||
|
||||
if vim.bo[self.buf].buftype == "" then
|
||||
vim.bo[self.buf].buftype = "nofile"
|
||||
|
@ -185,27 +204,38 @@ function M:mount()
|
|||
})
|
||||
end
|
||||
|
||||
---@param clear? boolean
|
||||
function M:augroup(clear)
|
||||
return vim.api.nvim_create_augroup("trouble.window." .. self.id, { clear = clear == true })
|
||||
end
|
||||
|
||||
---@param events string|string[]
|
||||
---@param fn fun(self?):boolean?
|
||||
---@param opts? table
|
||||
---@param fn fun(self:LazyFloat, event:{buf:number}):boolean?
|
||||
---@param opts? vim.api.keyset.create_autocmd | {buffer: false, win?:boolean}
|
||||
function M:on(events, fn, opts)
|
||||
if type(events) == "string" then
|
||||
events = { events }
|
||||
opts = opts or {}
|
||||
if opts.win then
|
||||
opts.pattern = self.win .. ""
|
||||
opts.win = nil
|
||||
elseif opts.buffer == nil then
|
||||
opts.buffer = self.buf
|
||||
elseif opts.buffer == false then
|
||||
opts.buffer = nil
|
||||
end
|
||||
for _, e in ipairs(events) do
|
||||
local event, pattern = e:match("(%w+) (%w+)")
|
||||
event = event or e
|
||||
vim.api.nvim_create_autocmd(
|
||||
event,
|
||||
vim.tbl_extend("force", {
|
||||
pattern = pattern,
|
||||
buffer = (not pattern) and self.buf or nil,
|
||||
callback = function()
|
||||
return fn(self)
|
||||
end,
|
||||
}, opts or {})
|
||||
)
|
||||
if opts.pattern then
|
||||
opts.buffer = nil
|
||||
end
|
||||
local _self = Util.weak(self)
|
||||
opts.callback = function(e)
|
||||
local this = _self()
|
||||
if not this then
|
||||
-- delete the autocmd
|
||||
return true
|
||||
end
|
||||
return fn(this, e)
|
||||
end
|
||||
opts.group = self:augroup()
|
||||
vim.api.nvim_create_autocmd(events, opts)
|
||||
end
|
||||
|
||||
---@param key string
|
||||
|
@ -223,6 +253,7 @@ end
|
|||
|
||||
---@param opts? {wipe:boolean}
|
||||
function M:close(opts)
|
||||
self:augroup(true)
|
||||
local buf = self.buf
|
||||
local win = self.win
|
||||
local wipe = opts and opts.wipe
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue