2022-12-05 21:45:50 +08:00
|
|
|
local Util = require("lazy.core.util")
|
|
|
|
local Config = require("lazy.core.config")
|
|
|
|
local Loader = require("lazy.core.loader")
|
|
|
|
|
2023-10-07 15:48:53 +08:00
|
|
|
---@class LazyEventOpts
|
|
|
|
---@field event string
|
|
|
|
---@field pattern? string
|
|
|
|
---@field exclude? string[]
|
|
|
|
---@field data? any
|
|
|
|
---@field buf? number}
|
|
|
|
|
2022-12-05 21:45:50 +08:00
|
|
|
---@class LazyEventHandler:LazyHandler
|
|
|
|
---@field events table<string,true>
|
|
|
|
---@field group number
|
|
|
|
local M = {}
|
|
|
|
|
2022-12-16 16:13:08 +08:00
|
|
|
M.group = vim.api.nvim_create_augroup("lazy_handler_event", { clear = true })
|
2022-12-05 21:45:50 +08:00
|
|
|
|
|
|
|
---@param value string
|
2022-12-16 16:13:08 +08:00
|
|
|
function M:_add(value)
|
|
|
|
local event_spec = self:_event(value)
|
2022-12-05 21:45:50 +08:00
|
|
|
---@type string?, string?
|
|
|
|
local event, pattern = event_spec:match("^(%w+)%s+(.*)$")
|
|
|
|
event = event or event_spec
|
2023-10-07 01:42:19 +08:00
|
|
|
local done = false
|
2022-12-05 21:45:50 +08:00
|
|
|
vim.api.nvim_create_autocmd(event, {
|
|
|
|
group = self.group,
|
|
|
|
once = true,
|
|
|
|
pattern = pattern,
|
2023-07-09 15:44:08 +08:00
|
|
|
callback = function(ev)
|
2023-10-07 01:42:19 +08:00
|
|
|
if done or not self.active[value] then
|
2022-12-05 21:45:50 +08:00
|
|
|
return
|
|
|
|
end
|
2023-10-07 01:42:19 +08:00
|
|
|
done = true
|
2022-12-16 16:13:08 +08:00
|
|
|
Util.track({ [self.type] = value })
|
2023-10-06 21:39:18 +08:00
|
|
|
local groups = M.get_augroups(ev.event, pattern)
|
2022-12-05 21:45:50 +08:00
|
|
|
-- load the plugins
|
2022-12-16 16:13:08 +08:00
|
|
|
Loader.load(self.active[value], { [self.type] = value })
|
2022-12-30 00:26:38 +08:00
|
|
|
-- check if any plugin created an event handler for this event and fire the group
|
2023-10-07 15:48:53 +08:00
|
|
|
self:_trigger({
|
2023-10-06 21:39:18 +08:00
|
|
|
event = ev.event,
|
|
|
|
pattern = pattern,
|
|
|
|
exclude = groups,
|
|
|
|
data = ev.data,
|
|
|
|
buf = ev.buf,
|
|
|
|
})
|
2022-12-05 21:45:50 +08:00
|
|
|
Util.track()
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2022-12-16 16:13:08 +08:00
|
|
|
---@param value string
|
|
|
|
function M:_event(value)
|
2023-10-06 21:39:18 +08:00
|
|
|
if value == "VeryLazy" then
|
|
|
|
return "User VeryLazy"
|
|
|
|
elseif value == "BufRead" then
|
|
|
|
return "BufReadPost"
|
|
|
|
end
|
|
|
|
return value
|
2022-12-16 16:13:08 +08:00
|
|
|
end
|
|
|
|
|
2022-12-05 21:45:50 +08:00
|
|
|
-- Get all augroups for the events
|
|
|
|
---@param event string
|
2023-06-06 21:05:51 +08:00
|
|
|
---@param pattern? string
|
|
|
|
function M.get_augroups(event, pattern)
|
2023-10-07 15:48:53 +08:00
|
|
|
local groups = {} ---@type string[]
|
2023-10-06 21:39:18 +08:00
|
|
|
for _, autocmd in ipairs(vim.api.nvim_get_autocmds({ event = event, pattern = pattern })) do
|
2023-10-07 15:48:53 +08:00
|
|
|
if autocmd.group_name then
|
|
|
|
table.insert(groups, autocmd.group_name)
|
2022-12-05 21:45:50 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
return groups
|
|
|
|
end
|
|
|
|
|
2023-10-07 15:48:53 +08:00
|
|
|
---@param opts LazyEventOpts
|
|
|
|
function M:_trigger(opts)
|
|
|
|
M.trigger(opts)
|
|
|
|
end
|
|
|
|
|
|
|
|
---@param opts LazyEventOpts
|
2023-10-06 21:39:18 +08:00
|
|
|
function M.trigger(opts)
|
|
|
|
local done = {} ---@type table<string,true>
|
|
|
|
for _, autocmd in ipairs(vim.api.nvim_get_autocmds({ event = opts.event, pattern = opts.pattern })) do
|
|
|
|
local id = autocmd.event .. ":" .. (autocmd.group or "") ---@type string
|
2023-10-07 15:48:53 +08:00
|
|
|
local skip = done[id] or (opts.exclude and vim.tbl_contains(opts.exclude, autocmd.group_name))
|
2023-10-06 21:39:18 +08:00
|
|
|
done[id] = true
|
|
|
|
if autocmd.group and not skip then
|
|
|
|
if Config.options.debug then
|
|
|
|
Util.info({
|
|
|
|
"# Firing Events",
|
|
|
|
" - **group:** `" .. autocmd.group_name .. "`",
|
|
|
|
" - **event:** " .. autocmd.event,
|
|
|
|
opts.pattern and (" - **pattern:** " .. opts.pattern),
|
|
|
|
opts.buf and (" - **buf:** " .. opts.buf),
|
|
|
|
})
|
2022-12-05 21:45:50 +08:00
|
|
|
end
|
2023-10-06 21:39:18 +08:00
|
|
|
Util.track({ event = autocmd.group_name })
|
|
|
|
Util.try(function()
|
|
|
|
vim.api.nvim_exec_autocmds(autocmd.event, {
|
|
|
|
-- pattern = opts.pattern,
|
|
|
|
buffer = opts.buf,
|
|
|
|
group = autocmd.group,
|
|
|
|
modeline = false,
|
|
|
|
data = opts.data,
|
|
|
|
})
|
|
|
|
Util.track()
|
|
|
|
end)
|
2022-12-05 21:45:50 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|