mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
71 lines
1.7 KiB
Lua
71 lines
1.7 KiB
Lua
local api = vim.api
|
|
local fn = vim.fn
|
|
local luv = vim.loop
|
|
local ts = vim.treesitter
|
|
|
|
local M = {}
|
|
|
|
function M.setup_commands(mod, commands)
|
|
for command_name, def in pairs(commands) do
|
|
local call_fn = string.format("lua require'nvim-treesitter.%s'.commands.%s.run(<f-args>)", mod, command_name)
|
|
local parts = vim.tbl_flatten({
|
|
"command!",
|
|
def.args,
|
|
command_name,
|
|
call_fn,
|
|
})
|
|
api.nvim_command(table.concat(parts, " "))
|
|
end
|
|
end
|
|
|
|
function M.get_package_path()
|
|
for _, path in pairs(api.nvim_list_runtime_paths()) do
|
|
if string.match(path, '.*/nvim%-treesitter') then
|
|
return path
|
|
end
|
|
end
|
|
|
|
return nil, 'Plugin runtime path not found.'
|
|
end
|
|
|
|
function M.get_cache_dir()
|
|
local home = fn.get(fn.environ(), 'HOME')
|
|
local xdg_cache = fn.get(fn.environ(), 'XDG_CACHE_HOME')
|
|
|
|
if xdg_cache == 0 then
|
|
xdg_cache = home .. '/.cache'
|
|
end
|
|
|
|
if luv.fs_access(xdg_cache, 'RW') then
|
|
return xdg_cache
|
|
elseif luv.fs_access('/tmp', 'RW') then
|
|
return '/tmp'
|
|
end
|
|
|
|
return nil, 'Invalid cache rights, $XDG_CACHE_HOME or /tmp should be read/write'
|
|
end
|
|
|
|
-- Gets a property at path
|
|
-- @param tbl the table to access
|
|
-- @param path the '.' seperated path
|
|
-- @returns the value at path or nil
|
|
function M.get_at_path(tbl, path)
|
|
local segments = vim.split(path, '.', true)
|
|
local result = tbl
|
|
|
|
for _, segment in ipairs(segments) do
|
|
if type(result) == 'table' then
|
|
result = result[segment]
|
|
end
|
|
end
|
|
|
|
return result
|
|
end
|
|
|
|
-- Prints a warning message
|
|
-- @param text the text message
|
|
function M.print_warning(text)
|
|
api.nvim_command(string.format([[echohl WarningMsg | echo "%s" | echohl None]], text))
|
|
end
|
|
|
|
return M
|