refactor(lua): cleanup and docs for threads

This commit is contained in:
bfredl
2022-02-26 11:03:39 +01:00
parent acf38245d8
commit 850b3e19c9
7 changed files with 79 additions and 78 deletions

View File

@@ -45,4 +45,5 @@ 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)