summaryrefslogtreecommitdiff
path: root/queries/lua
AgeCommit message (Collapse)Author
2020-09-01fix(fold): revamp foldThomas Vigouroux
fix(fold): typo fix(fold): remove debug and add queries fix(fold): fallback to local scopes for folds
2020-08-17chore(highlights): remove is predicate usageSteven Sojka
2020-08-16feat(highlights): add is predicateSteven Sojka
2020-08-11Lua highlights: add operator "=" and punctuationStephan Seitz
2020-08-09Lua: highlight function nameSantos Gallegos
2020-08-04Lua: fix @error captureSantos Gallegos
2020-08-03Lua locals: Make property_identifier a referenceStephan Seitz
2020-07-28Lua: update some queriesSantos Gallegos
- Basic textobjects - Highlighting punctuation symbols
2020-07-16highlights: some fixesThomas Vigouroux
Add `goto` keyword for C. Fix typo for lua.
2020-07-08locals(lua): simplify argsThomas Vigouroux
2020-07-08highlight(lua): fix overlapping queriesThomas Vigouroux
2020-07-01locals(lua): capture function definition paramsThomas Vigouroux
2020-07-01highlights(lua): update query to new syntaxThomas Vigouroux
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.