File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -1509,11 +1509,19 @@ function M.clean()
15091509 scan_directory (START_DIR )
15101510 scan_directory (OPT_DIR )
15111511
1512+ local strive_plugin = Plugin .new ({
1513+ name = ' nvimdev/strive' ,
1514+ plugin_name = ' strive' ,
1515+ is_lazy = true ,
1516+ is_remote = true ,
1517+ })
1518+
1519+ local p = vim .list_extend (plugins , { strive_plugin })
15121520 -- Find plugins not in our registry
15131521 local to_remove = {}
15141522 for name , dir in pairs (installed_dirs ) do
15151523 local found = false
1516- for _ , plugin in ipairs (vim . list_extend ( plugins , { plugin_name = ' strive ' }) ) do
1524+ for _ , plugin in ipairs (p ) do
15171525 M .log (
15181526 ' debug' ,
15191527 string.format (' Comparing %s with registered plugin %s' , name , plugin .plugin_name )
You can’t perform that action at this time.
0 commit comments