mirror of https://github.com/folke/lazy.nvim.git
feat(commands): added highly experimental `Lazy reload ...` command. See #445
This commit is contained in:
parent
d8a5829fda
commit
a6c8f22362
|
@ -227,10 +227,18 @@ function M.deactivate(plugin)
|
|||
end
|
||||
|
||||
--- reload a plugin
|
||||
---@param plugin LazyPlugin
|
||||
---@param plugin LazyPlugin|string
|
||||
function M.reload(plugin)
|
||||
if type(plugin) == "string" then
|
||||
plugin = Config.plugins[plugin]
|
||||
end
|
||||
|
||||
if not plugin then
|
||||
error("Plugin not found")
|
||||
end
|
||||
|
||||
local load = plugin._.loaded ~= nil
|
||||
M.deactivate(plugin)
|
||||
local load = false -- plugin._.loaded ~= nil
|
||||
|
||||
-- enable handlers
|
||||
Handler.enable(plugin)
|
||||
|
|
|
@ -53,6 +53,12 @@ M.commands = {
|
|||
-- when a command is executed with a bang, wait will be set
|
||||
require("lazy.core.loader").load(opts.plugins, { cmd = "Lazy load" }, { force = opts.wait })
|
||||
end,
|
||||
reload = function(opts)
|
||||
for _, plugin in pairs(opts.plugins) do
|
||||
Util.warn("Reloading **" .. plugin.name .. "**")
|
||||
require("lazy.core.loader").reload(plugin)
|
||||
end
|
||||
end,
|
||||
log = Manage.log,
|
||||
build = Manage.build,
|
||||
clean = Manage.clean,
|
||||
|
|
|
@ -143,11 +143,17 @@ M.commands = {
|
|||
},
|
||||
build = {
|
||||
desc = "Rebuild a plugin",
|
||||
id = 13,
|
||||
id = 15,
|
||||
plugins = true,
|
||||
plugins_required = true,
|
||||
key_plugin = "gb",
|
||||
},
|
||||
reload = {
|
||||
desc = "Reload a plugin (experimental!!)",
|
||||
plugins = true,
|
||||
plugins_required = true,
|
||||
id = 16,
|
||||
},
|
||||
}
|
||||
|
||||
return M
|
||||
|
|
Loading…
Reference in New Issue