File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 525
525
526
526
function M .auto_load (modname , modpath )
527
527
local plugin = Plugin .find (modpath , { fast = not M .did_handlers })
528
- if plugin and modpath : find ( plugin . dir , 1 , true ) == 1 then
528
+ if plugin then
529
529
plugin ._ .rtp_loaded = true
530
530
-- don't load if:
531
531
-- * handlers haven't been setup yet
Original file line number Diff line number Diff line change 1
1
local Config = require (" lazy.core.config" )
2
- local Util = require (" lazy.util" )
2
+ local Util = require (" lazy.core. util" )
3
3
4
4
local M = {}
5
5
M .VERSION = 10
@@ -71,9 +71,10 @@ function M.update()
71
71
table.sort (ret .pkgs , function (a , b )
72
72
return a .name < b .name
73
73
end )
74
- local code = " return " .. Util .dump (ret )
74
+ local U = require (" lazy.util" )
75
+ local code = " return " .. U .dump (ret )
75
76
vim .fn .mkdir (vim .fn .fnamemodify (Config .options .pkg .cache , " :h" ), " p" )
76
- Util .write_file (Config .options .pkg .cache , code )
77
+ U .write_file (Config .options .pkg .cache , code )
77
78
M .dirty = false
78
79
M .cache = nil
79
80
end
You can’t perform that action at this time.
0 commit comments