local pathtrails = {}
vim._so_trails = {}
for s in (package.cpath .. ';'):gmatch('[^;]*;') do
s = s:sub(1, -2)
local pathtrail = s:match('[/\\][^/\\]*%?.*$')
if pathtrail and not pathtrails[pathtrail] then
pathtrails[pathtrail] = true
table.insert(vim._so_trails, pathtrail)
end
end
function vim._load_package(name)
local basename = name:gsub('%.', '/')
local paths = { 'lua/' .. basename .. '.lua', 'lua/' .. basename .. '/init.lua' }
local found = vim.api.nvim__get_runtime(paths, false, { is_lua = true })
if #found > 0 then
local f, err = loadfile(found[1])
return f or error(err)
end
local so_paths = {}
for _, trail in ipairs(vim._so_trails) do
local path = 'lua' .. trail:gsub('?', basename)
table.insert(so_paths, path)
end
found = vim.api.nvim__get_runtime(so_paths, false, { is_lua = true })
if #found > 0 then
local dash = name:find('-', 1, true)
local modname = dash and name:sub(dash + 1) or name
local f, err = package.loadlib(found[1], 'luaopen_' .. modname:gsub('%.', '_'))
return f or error(err)
end
return nil
end
if vim.api then
table.insert(package.loaders, 2, vim._load_package)
end
require('vim.shared')
vim._submodules = {
inspect = true,
version = true,
fs = true,
glob = true,
iter = true,
re = true,
text = true,
provider = true,
}
setmetatable(vim, {
__index = function(t, key)
if vim._submodules[key] then
t[key] = require('vim.' .. key)
return t[key]
elseif key == 'inspect_pos' or key == 'show_pos' then
require('vim._inspector')
return t[key]
elseif vim.startswith(key, 'uri_') then
local val = require('vim.uri')[key]
if val ~= nil then
t[key] = val
return t[key]
end
end
end,
})
function vim.empty_dict()
return setmetatable({}, vim._empty_dict_mt)
end
if vim.api and not vim.is_thread() then
require('vim._editor')
require('vim._system')
end