mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
features:
- node_movement is moving between scopes.
- add selection initialization from normal mode
- add a decremental selection
improvements:
- attach to buffer to run tree parsing on change
- run state update on CursorMoved
- the buffer state is:
```
{
cursor_pos = { row=row, col=col },
current_node = node_under_cursor,
selection = {
range = nil, -- activates when starting a selection
nodes = {} -- filling up when starting an incremental selection
},
parser = parser, -- parser for current buffer
}
```
- refacto all the modules reliant on parsing the tree, update the current nodes, get the current nodes...
fixes:
- fix has_parser to look for .so libraries
- fix should select the whole file when selection root in selection
67 lines
1.6 KiB
Lua
67 lines
1.6 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
|
|
|
|
function M.has_parser(lang)
|
|
local lang = lang or api.nvim_buf_get_option(0, 'filetype')
|
|
return #api.nvim_get_runtime_file('parser/' .. lang .. '.so', false) > 0
|
|
end
|
|
|
|
function M.get_parser(bufnr, lang)
|
|
if M.has_parser() then
|
|
local buf = bufnr or api.nvim_get_current_buf()
|
|
local lang = lang or api.nvim_buf_get_option(buf, 'ft')
|
|
if not M[buf] then
|
|
M[buf] = {}
|
|
end
|
|
if not M[buf][lang] then
|
|
M[buf][lang] = ts.get_parser(buf, lang)
|
|
end
|
|
return M[buf][lang]
|
|
end
|
|
end
|
|
|
|
return M
|