Skip to content

Commit 0774f1b

Browse files
committed
feat: added support for Plugin.lock (wont update)
1 parent 1bbfa3a commit 0774f1b

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
## ✅ TODO
2626

27+
- [x] support for Plugin.lock
2728
- [ ] health checks: check merge conflicts async
2829
- [ ] defaults for git log
2930
- [x] view keybindings for update/clean/...

lua/lazy/core/plugin.lua

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ M.dirty = false
3131
---@field tag? string
3232
---@field commit? string
3333
---@field version? string
34+
---@field lock? boolean
3435

3536
---@class LazyPlugin: LazyPluginHandlers,LazyPluginHooks,LazyPluginRef
3637
---@field [1] string

lua/lazy/manage/task/git.lua

+4
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,10 @@ M.checkout = {
130130
local info = assert(Git.info(self.plugin.dir))
131131
local target = assert(Git.get_target(self.plugin))
132132

133+
if self.plugin.lock then
134+
target = info
135+
end
136+
133137
local lock
134138
if opts.lockfile then
135139
lock = Lock.get(self.plugin)

0 commit comments

Comments
 (0)