Merge pull request #17302 from lewis6991/pkg_ldr

fix(lua): restore priority of the preloader
This commit is contained in:
bfredl 2022-02-06 15:40:45 +01:00 committed by GitHub
commit c7df847c07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -87,7 +87,8 @@ function vim._load_package(name)
return nil
end
table.insert(package.loaders, 1, vim._load_package)
-- Insert vim._load_package after the preloader at position 2
table.insert(package.loaders, 2, vim._load_package)
-- These are for loading runtime modules lazily since they aren't available in
-- the nvim binary as specified in executor.c