summaryrefslogtreecommitdiff
path: root/queries/lua
AgeCommit message (Collapse)Author
2020-05-07fix(lua): update queriesThomas Vigouroux
2020-04-23locals(lua): incorrect query for field functionsThomas Vigouroux
2020-04-23highlight(lua): highlight local functionsThomas Vigouroux
2020-04-22highlight(lua): add more operatorsThomas Vigouroux
2020-04-22feat: syntax highlightingThomas Vigouroux
2020-04-19feat: first version of localsThomas Vigouroux
Locals will be the main interface to treesitter, through some functions: get_definitions(bufnr) : returns all the definitions in bufnr get_scopes(bufnr): returns all definitions in bufnr get_references(bufnr): returns all references in bufnr
2020-04-18feat: add an example locals queryThomas Vigouroux
This will be the guide for the implementation of locals extraction, which is treesitters name of definition/scope.