neovim/runtime/lua/vim/treesitter.lua

74 lines
1.9 KiB
Lua
Raw Normal View History

local a = vim.api
2019-06-07 09:19:59 -07:00
local Parser = {}
Parser.__index = Parser
-- TODO(bfredl): currently we retain parsers for the lifetime of the buffer.
-- Consider use weak references to release parser if all plugins are done with
-- it.
local parsers = {}
function Parser:parse()
if self.valid then
2019-06-07 09:19:59 -07:00
return self.tree
end
2019-06-07 09:19:59 -07:00
self.tree = self._parser:parse_buf(self.bufnr)
self.valid = true
return self.tree
end
local function on_lines(self, bufnr, _, start_row, old_stop_row, stop_row, old_byte_size)
local start_byte = a.nvim_buf_get_offset(bufnr,start_row)
local stop_byte = a.nvim_buf_get_offset(bufnr,stop_row)
local old_stop_byte = start_byte + old_byte_size
self._parser:edit(start_byte,old_stop_byte,stop_byte,
start_row,0,old_stop_row,0,stop_row,0)
2019-06-07 09:19:59 -07:00
self.valid = false
end
local function create_parser(bufnr, ft, id)
if bufnr == 0 then
bufnr = a.nvim_get_current_buf()
end
2019-06-07 09:19:59 -07:00
local self = setmetatable({bufnr=bufnr, valid=false}, Parser)
self._parser = vim._create_ts_parser(ft)
self:parse()
2019-06-07 09:19:59 -07:00
-- TODO: use weakref to self, so that the parser is free'd is no plugin is
-- using it.
local function lines_cb(_, ...)
return on_lines(self, ...)
end
local detach_cb = nil
if id ~= nil then
detach_cb = function()
if parsers[id] == self then
parsers[id] = nil
end
end
end
a.nvim_buf_attach(self.bufnr, false, {on_lines=lines_cb, on_detach=detach_cb})
2019-06-07 09:19:59 -07:00
return self
end
local function get_parser(bufnr, ft)
if bufnr == nil or bufnr == 0 then
bufnr = a.nvim_get_current_buf()
end
if ft == nil then
ft = a.nvim_buf_get_option(bufnr, "filetype")
end
local id = tostring(bufnr)..'_'..ft
if parsers[id] == nil then
parsers[id] = create_parser(bufnr, ft, id)
end
return parsers[id]
end
2019-06-07 09:19:59 -07:00
2019-06-15 05:05:35 -07:00
return {
get_parser=get_parser,
2019-06-15 05:05:35 -07:00
create_parser=create_parser,
add_language=vim._ts_add_language,
inspect_language=vim._ts_inspect_language,
}