2021-11-13 11:29:31 -05:00
|
|
|
local hooks, M = {}, {}
|
2021-11-14 02:13:36 -05:00
|
|
|
|
2021-08-24 15:45:59 -04:00
|
|
|
local allowed_hooks = {
|
2021-12-10 15:19:35 -05:00
|
|
|
["install_plugins"] = true,
|
|
|
|
["setup_mappings"] = true,
|
2021-08-24 15:45:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
M.add = function(name, fn)
|
2021-12-10 15:19:35 -05:00
|
|
|
if not allowed_hooks[name] then
|
2021-11-13 11:29:31 -05:00
|
|
|
print("Custom lua uses unallowed hook " .. name)
|
2021-10-02 01:15:50 -04:00
|
|
|
end
|
2021-12-10 15:19:35 -05:00
|
|
|
if not hooks[name] then
|
2021-10-02 01:15:50 -04:00
|
|
|
hooks[name] = {}
|
|
|
|
end
|
|
|
|
table.insert(hooks[name], fn)
|
2021-08-24 15:45:59 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
M.run = function(name, args)
|
2021-12-10 15:19:35 -05:00
|
|
|
if hooks[name] then
|
2021-11-13 11:29:31 -05:00
|
|
|
for _, hook in pairs(hooks[name]) do
|
|
|
|
hook(args)
|
2021-08-31 10:20:57 -04:00
|
|
|
end
|
2021-10-02 01:15:50 -04:00
|
|
|
end
|
2021-08-31 10:20:57 -04:00
|
|
|
end
|
|
|
|
|
2021-10-02 01:15:50 -04:00
|
|
|
return M
|