File tree 5 files changed +64
-1
lines changed
5 files changed +64
-1
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,13 @@ M.defaults = {
50
50
},
51
51
throttle = 20 , -- how frequently should the ui process render events
52
52
},
53
+ checker = {
54
+ -- lazy can automatically check for updates
55
+ enabled = false ,
56
+ concurrency = 10 , -- set to 1 to very slowly check for updates
57
+ notify = true , -- get a notification if new updates are found
58
+ frequency = 3600 , -- every hour
59
+ },
53
60
performance = {
54
61
--- @type LazyCacheConfig
55
62
cache = nil ,
@@ -102,6 +109,9 @@ function M.setup(spec, opts)
102
109
require (" lazy.core.cache" ).autosave ()
103
110
require (" lazy.view" ).setup ()
104
111
require (" lazy.manage.reloader" ).enable ()
112
+ if M .options .checker .enabled then
113
+ require (" lazy.manage.checker" ).start ()
114
+ end
105
115
end ,
106
116
})
107
117
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ local M = {}
16
16
--- @field dirty ? boolean
17
17
--- @field updated ? { from : string , to : string }
18
18
--- @field is_local boolean
19
+ --- @field has_updates ? boolean
19
20
--- @field cloned ? boolean
20
21
--- @field dep ? boolean True if this plugin is only in the spec as a dependency
21
22
Original file line number Diff line number Diff line change
1
+ local Config = require (" lazy.core.config" )
2
+ local Manage = require (" lazy.manage" )
3
+ local Util = require (" lazy.util" )
4
+ local Git = require (" lazy.manage.git" )
5
+
6
+ local M = {}
7
+
8
+ M .running = false
9
+ M .updated = {}
10
+
11
+ function M .start ()
12
+ M .fast_check ()
13
+ M .check ()
14
+ end
15
+
16
+ function M .fast_check ()
17
+ for _ , plugin in pairs (Config .plugins ) do
18
+ local info = Git .info (plugin .dir )
19
+ local target = Git .get_target (plugin )
20
+ if info and target and info .commit ~= target .commit then
21
+ plugin ._ .has_updates = true
22
+ end
23
+ end
24
+ M .report ()
25
+ end
26
+
27
+ function M .check ()
28
+ Manage .check ({
29
+ show = false ,
30
+ concurrency = Config .options .checker .concurrency ,
31
+ }):wait (function ()
32
+ M .report ()
33
+ vim .defer_fn (M .check , Config .options .checker .frequency * 1000 )
34
+ end )
35
+ end
36
+
37
+ function M .report ()
38
+ local lines = {}
39
+ for _ , plugin in pairs (Config .plugins ) do
40
+ if plugin ._ .has_updates and not vim .tbl_contains (M .updated , plugin .name ) then
41
+ table.insert (lines , " - **" .. plugin .name .. " **" )
42
+ table.insert (M .updated , plugin .name )
43
+ end
44
+ end
45
+ if # lines > 0 and Config .options .checker .notify then
46
+ table.insert (lines , 1 , " # Plugin Updates" )
47
+ Util .info (lines )
48
+ end
49
+ end
50
+
51
+ return M
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ M.log = {
31
31
local info = assert (Git .info (self .plugin .dir ))
32
32
local target = assert (Git .get_target (self .plugin ))
33
33
assert (target .commit , self .plugin .name .. " " .. target .branch )
34
+ self .plugin ._ .has_updates = target .commit ~= info .commit
34
35
table.insert (args , info .commit .. " .." .. target .commit )
35
36
else
36
37
vim .list_extend (args , opts .args or Config .options .git .log )
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ function M.show(mode)
42
42
require (" lazy.view.colors" ).setup ()
43
43
44
44
if M ._buf and vim .api .nvim_buf_is_valid (M ._buf ) then
45
- vim .api .nvim_win_set_cursor (M ._win , { 1 , 0 })
45
+ -- vim.api.nvim_win_set_cursor(M._win, { 1, 0 })
46
46
vim .cmd ([[ do User LazyRender]] )
47
47
return
48
48
end
You can’t perform that action at this time.
0 commit comments