File tree 4 files changed +15
-13
lines changed
4 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 24
24
## ✅ TODO
25
25
26
26
- [ ] health checks: check merge conflicts async
27
+ - [ ] unsupported props or props from other managers
28
+ - [x] rename ` run ` to ` build `
27
29
- [ ] allow setting up plugins through config
28
30
- [x] task timeout
29
31
- [ ] log file
30
- - [ ] deal with resourcing init.lua. Check a global?
32
+ - [ ] deal with re-sourcing init.lua. Check a global?
31
33
- [x] incorrect when switching TN from opt to start
32
34
- [ ] git tests
33
35
- [x] max concurrency
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ local M = {}
8
8
--- @class LazyPluginHooks
9
9
--- @field init ? fun ( LazyPlugin ) Will always be run
10
10
--- @field config ? fun ( LazyPlugin ) Will be executed when loading the plugin
11
- --- @field run ? string | fun ()
11
+ --- @field build ? string | fun ( LazyPlugin )
12
12
13
13
--- @class LazyPluginState
14
14
--- @field loaded ? { [string] : string , time : number }
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ function M.install(opts)
59
59
" git.checkout" ,
60
60
" plugin.docs" ,
61
61
" wait" ,
62
- " plugin.run " ,
62
+ " plugin.build " ,
63
63
},
64
64
plugins = function (plugin )
65
65
return plugin .uri and not plugin ._ .installed
@@ -78,7 +78,7 @@ function M.update(opts)
78
78
{ " git.checkout" , lockfile = opts .lockfile },
79
79
" plugin.docs" ,
80
80
" wait" ,
81
- " plugin.run " ,
81
+ " plugin.build " ,
82
82
{ " git.log" , updated = true },
83
83
},
84
84
plugins = function (plugin )
Original file line number Diff line number Diff line change @@ -4,22 +4,22 @@ local Loader = require("lazy.core.loader")
4
4
--- @type table<string , LazyTaskDef>
5
5
local M = {}
6
6
7
- M .run = {
7
+ M .build = {
8
8
skip = function (plugin )
9
- return not (plugin ._ .dirty and (plugin .opt == false or plugin .run ))
9
+ return not (plugin ._ .dirty and (plugin .opt == false or plugin .build ))
10
10
end ,
11
11
run = function (self )
12
12
Loader .load (self .plugin , { task = " run" }, { load_start = true })
13
13
14
- local run = self .plugin .run
15
- if run then
16
- if type (run ) == " string" and run :sub (1 , 1 ) == " :" then
17
- local cmd = vim .api .nvim_parse_cmd (run :sub (2 ), {})
14
+ local build = self .plugin .build
15
+ if build then
16
+ if type (build ) == " string" and build :sub (1 , 1 ) == " :" then
17
+ local cmd = vim .api .nvim_parse_cmd (build :sub (2 ), {})
18
18
self .output = vim .api .nvim_cmd (cmd , { output = true })
19
- elseif type (run ) == " function" then
20
- run ()
19
+ elseif type (build ) == " function" then
20
+ build ()
21
21
else
22
- local args = vim .split (run , " %s+" )
22
+ local args = vim .split (build , " %s+" )
23
23
return self :spawn (table.remove (args , 1 ), {
24
24
args = args ,
25
25
cwd = self .plugin .dir ,
You can’t perform that action at this time.
0 commit comments