mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-16 02:10:15 -04:00
commit
05be31024a
6 changed files with 118 additions and 12 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
local api = vim.api
|
local api = vim.api
|
||||||
local parsers = require'nvim-treesitter.parsers'
|
local parsers = require'nvim-treesitter.parsers'
|
||||||
local install = require'nvim-treesitter.install'
|
local install = require'nvim-treesitter.install'
|
||||||
|
local locals = require'nvim-treesitter.locals'
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
|
|
|
||||||
91
lua/nvim-treesitter/locals.lua
Normal file
91
lua/nvim-treesitter/locals.lua
Normal file
|
|
@ -0,0 +1,91 @@
|
||||||
|
-- Functions to handle locals
|
||||||
|
-- Locals are a generalization of definition and scopes
|
||||||
|
-- its the way nvim-treesitter uses to "understand" the code
|
||||||
|
local api = vim.api
|
||||||
|
local ts = vim.treesitter
|
||||||
|
local queries = require'nvim-treesitter.query'
|
||||||
|
local parsers = require'nvim-treesitter.parsers'
|
||||||
|
|
||||||
|
local M = {
|
||||||
|
locals={}
|
||||||
|
}
|
||||||
|
|
||||||
|
function M.collect_locals(bufnr)
|
||||||
|
local ft = api.nvim_buf_get_option(bufnr, "ft")
|
||||||
|
if not ft then return end
|
||||||
|
|
||||||
|
local query = queries.get_query(ft, 'locals')
|
||||||
|
if not query then return end
|
||||||
|
|
||||||
|
local parser = parsers.get_parser(bufnr, ft)
|
||||||
|
if not parser then return end
|
||||||
|
|
||||||
|
local root = parser:parse():root()
|
||||||
|
local start_row, _, end_row, _ = root:range()
|
||||||
|
|
||||||
|
local locals = {}
|
||||||
|
|
||||||
|
for prepared_match in queries.iter_prepared_matches(query, root, bufnr, start_row, end_row) do
|
||||||
|
table.insert(locals, prepared_match)
|
||||||
|
end
|
||||||
|
|
||||||
|
return locals
|
||||||
|
end
|
||||||
|
|
||||||
|
local function update_cached_locals(bufnr, changed_tick)
|
||||||
|
M.locals[bufnr] = {tick=changed_tick, cache=( M.collect_locals(bufnr) or {} )}
|
||||||
|
end
|
||||||
|
|
||||||
|
function M.get_locals(bufnr)
|
||||||
|
local bufnr = bufnr or api.nvim_get_current_buf()
|
||||||
|
local cached_local = M.locals[bufnr]
|
||||||
|
if not cached_local or api.nvim_buf_get_changedtick(bufnr) < cached_local.tick then
|
||||||
|
update_cached_locals(bufnr,api.nvim_buf_get_changedtick(bufnr))
|
||||||
|
end
|
||||||
|
|
||||||
|
return M.locals[bufnr].cache
|
||||||
|
end
|
||||||
|
|
||||||
|
function M.get_definitions(bufnr)
|
||||||
|
local locals = M.get_locals(bufnr)
|
||||||
|
|
||||||
|
local defs = {}
|
||||||
|
|
||||||
|
for _, loc in ipairs(locals) do
|
||||||
|
if loc.definition then
|
||||||
|
table.insert(defs, {definition=loc.definition, kind=loc.kind})
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return defs
|
||||||
|
end
|
||||||
|
|
||||||
|
function M.get_scopes(bufnr)
|
||||||
|
local locals = M.get_locals(bufnr)
|
||||||
|
|
||||||
|
local scopes = {}
|
||||||
|
|
||||||
|
for _, loc in ipairs(locals) do
|
||||||
|
if loc.scope then
|
||||||
|
table.insert(scopes, loc.scope)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return scopes
|
||||||
|
end
|
||||||
|
|
||||||
|
function M.get_references(bufnr)
|
||||||
|
local locals = M.get_locals(bufnr)
|
||||||
|
|
||||||
|
local refs = {}
|
||||||
|
|
||||||
|
for _, loc in ipairs(locals) do
|
||||||
|
if loc.reference then
|
||||||
|
table.insert(refs, loc.reference)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return refs
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
||||||
|
|
@ -8,13 +8,17 @@ function M.has_parser(lang)
|
||||||
return #api.nvim_get_runtime_file('parser/' .. lang .. '.*', false) > 0
|
return #api.nvim_get_runtime_file('parser/' .. lang .. '.*', false) > 0
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.get_parser(bufnr)
|
function M.get_parser(bufnr, lang)
|
||||||
if M.has_parser() then
|
if M.has_parser() then
|
||||||
local buf = bufnr or api.nvim_get_current_buf()
|
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
|
if not M[buf] then
|
||||||
M[buf] = ts.get_parser(buf)
|
M[buf] = {}
|
||||||
end
|
end
|
||||||
return M[buf]
|
if not M[buf][lang] then
|
||||||
|
M[buf][lang] = ts.get_parser(buf, lang)
|
||||||
|
end
|
||||||
|
return M[buf][lang]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ function M.iter_prepared_matches(query, qnode, bufnr, start_row, end_row)
|
||||||
local name = query.captures[id] -- name of the capture in the query
|
local name = query.captures[id] -- name of the capture in the query
|
||||||
if name ~= nil then
|
if name ~= nil then
|
||||||
local path = split(name)
|
local path = split(name)
|
||||||
insert_to_path(prepared_match, path, node)
|
insert_to_path(prepared_match, path, { node=node })
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
10
plugin/nvim-treesitter.vim
Normal file
10
plugin/nvim-treesitter.vim
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
" Last Change: 2020 avril 19
|
||||||
|
|
||||||
|
if exists('g:loaded_nvim_treesitter')
|
||||||
|
finish
|
||||||
|
endif
|
||||||
|
|
||||||
|
let g:loaded_nvim_treesitter = 1
|
||||||
|
|
||||||
|
augroup NvimTreesitter
|
||||||
|
augroup END
|
||||||
|
|
@ -3,19 +3,19 @@
|
||||||
;; Variable and field declarations
|
;; Variable and field declarations
|
||||||
((variable_declarator
|
((variable_declarator
|
||||||
(identifier) @definition)
|
(identifier) @definition)
|
||||||
(set! kind "v"))
|
(set! definition.kind "v"))
|
||||||
|
|
||||||
((variable_declarator
|
((variable_declarator
|
||||||
(field_expression object:(*) @definition.associated (property_identifier) @definition))
|
(field_expression object:(*) @definition.associated (property_identifier) @definition))
|
||||||
(set! kind "v"))
|
(set! difinition.kind "v"))
|
||||||
|
|
||||||
;; Parameters
|
;; Parameters
|
||||||
((local_function
|
((local_function
|
||||||
(parameters (identifier) @definition))
|
(parameters (identifier) @definition))
|
||||||
(set! kind "v"))
|
(set! definition.kind "v"))
|
||||||
((function
|
((function
|
||||||
(parameters (identifier) @definition))
|
(parameters (identifier) @definition))
|
||||||
(set! kind "v"))
|
(set! definition.kind "v"))
|
||||||
|
|
||||||
;; Function definitions
|
;; Function definitions
|
||||||
;; Functions definitions creates both a definition and a new scope
|
;; Functions definitions creates both a definition and a new scope
|
||||||
|
|
@ -23,15 +23,15 @@
|
||||||
(function_name_field
|
(function_name_field
|
||||||
object: (identifier) @definition.associated
|
object: (identifier) @definition.associated
|
||||||
(property_identifier) @definition)) @scope
|
(property_identifier) @definition)) @scope
|
||||||
(set! kind "m"))
|
(set! definition.kind "m"))
|
||||||
|
|
||||||
((function
|
((function
|
||||||
(function_name (identifier) @definition)) @scope
|
(function_name (identifier) @definition)) @scope
|
||||||
(set! kind "f"))
|
(set! definition.kind "f"))
|
||||||
|
|
||||||
((local_function
|
((local_function
|
||||||
(identifier) @definition) @scope
|
(identifier) @definition) @scope
|
||||||
(set! kind "f"))
|
(set! definition.kind "f"))
|
||||||
|
|
||||||
((if_statement) @scope)
|
((if_statement) @scope)
|
||||||
((for_in_statement) @scope)
|
((for_in_statement) @scope)
|
||||||
|
|
@ -39,7 +39,7 @@
|
||||||
;; Loops
|
;; Loops
|
||||||
((loop_expression
|
((loop_expression
|
||||||
(identifier) @definition)
|
(identifier) @definition)
|
||||||
(set! kind "v"))
|
(set! definition.kind "v"))
|
||||||
|
|
||||||
;;; REFERENCES
|
;;; REFERENCES
|
||||||
((identifier) @reference)
|
((identifier) @reference)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue