Skip to content

Commit 23c0587

Browse files
committed
feat(commands): added build command to force rebuild of a plugin
1 parent 205ce42 commit 23c0587

File tree

5 files changed

+31
-4
lines changed

5 files changed

+31
-4
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,7 @@ Any operation can be started from the UI, with a sub command or an API function:
489489

490490
| Command | Lua | Description |
491491
| ------------------------- | -------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
492+
| `:Lazy build {plugins}` | `require("lazy").build(opts)` | Rebuild a plugin |
492493
| `:Lazy check [plugins]` | `require("lazy").check(opts?)` | Check for updates and show the log (git fetch) |
493494
| `:Lazy clean [plugins]` | `require("lazy").clean(opts?)` | Clean plugins that are no longer needed |
494495
| `:Lazy clear` | `require("lazy").clear()` | Clear finished tasks |

lua/lazy/manage/init.lua

+11
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,17 @@ function M.log(opts)
144144
}, opts)
145145
end
146146

147+
---@param opts? ManagerOpts
148+
function M.build(opts)
149+
opts = M.opts(opts, { mode = "build" })
150+
return M.run({
151+
pipeline = { { "plugin.build", force = true } },
152+
plugins = function()
153+
return false
154+
end,
155+
}, opts)
156+
end
157+
147158
---@param opts? ManagerOpts
148159
function M.sync(opts)
149160
opts = M.opts(opts)

lua/lazy/manage/task/plugin.lua

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ local Loader = require("lazy.core.loader")
55
local M = {}
66

77
M.build = {
8-
skip = function(plugin)
8+
---@param opts? {force:boolean}
9+
skip = function(plugin, opts)
10+
if opts and opts.force then
11+
return false
12+
end
913
return not (plugin._.dirty and plugin.build)
1014
end,
1115
run = function(self)

lua/lazy/view/commands.lua

+7-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ function M.cmd(cmd, opts)
1313
local command = M.commands[cmd] --[[@as fun(opts)]]
1414
if command == nil then
1515
Util.error("Invalid lazy command '" .. cmd .. "'")
16+
elseif
17+
ViewConfig.commands[cmd]
18+
and ViewConfig.commands[cmd].plugins_required
19+
and not (opts and vim.tbl_count(opts.plugins or {}) > 0)
20+
then
21+
return Util.error("`Lazy " .. cmd .. "` requires at least one plugin")
1622
else
1723
command(opts)
1824
end
@@ -44,12 +50,10 @@ M.commands = {
4450
end,
4551
---@param opts ManagerOpts
4652
load = function(opts)
47-
if not (opts and opts.plugins and #opts.plugins > 0) then
48-
return Util.error("`Lazy load` requires at least one plugin name to load")
49-
end
5053
require("lazy.core.loader").load(opts.plugins, { cmd = "LazyLoad" })
5154
end,
5255
log = Manage.log,
56+
build = Manage.build,
5357
clean = Manage.clean,
5458
install = Manage.install,
5559
sync = Manage.sync,

lua/lazy/view/config.lua

+7
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,13 @@ M.commands = {
139139
desc = "Run `:checkhealth lazy`",
140140
id = 14,
141141
},
142+
build = {
143+
desc = "Rebuild a plugin",
144+
id = 13,
145+
plugins = true,
146+
plugins_required = true,
147+
key_plugin = "b",
148+
},
142149
}
143150

144151
return M

0 commit comments

Comments
 (0)