File tree 3 files changed +6
-0
lines changed
3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 24
24
25
25
## ✅ TODO
26
26
27
+ - [x] support for Plugin.lock
27
28
- [ ] health checks: check merge conflicts async
28
29
- [ ] defaults for git log
29
30
- [x] view keybindings for update/clean/...
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ M.dirty = false
31
31
--- @field tag ? string
32
32
--- @field commit ? string
33
33
--- @field version ? string
34
+ --- @field lock ? boolean
34
35
35
36
--- @class LazyPlugin : LazyPluginHandlers , LazyPluginHooks , LazyPluginRef
36
37
--- @field [ 1] string
Original file line number Diff line number Diff line change @@ -130,6 +130,10 @@ M.checkout = {
130
130
local info = assert (Git .info (self .plugin .dir ))
131
131
local target = assert (Git .get_target (self .plugin ))
132
132
133
+ if self .plugin .lock then
134
+ target = info
135
+ end
136
+
133
137
local lock
134
138
if opts .lockfile then
135
139
lock = Lock .get (self .plugin )
You can’t perform that action at this time.
0 commit comments