aboutsummaryrefslogtreecommitdiffstats
path: root/queries/lua
Commit message (Collapse)AuthorAgeFilesLines
...
* indent fixeskiyan422021-01-041-0/+1
|
* Add c injection for ffi.cdef to luaSimon Hauser2021-01-011-0/+10
|
* Remove duplicate capture for `function_definition`El Piloto2020-12-161-2/+4
|
* Capture anonymous functions assigned to variablesEl Piloto2020-12-161-0/+5
| | | | Closes https://github.com/nvim-treesitter/nvim-treesitter/issues/709
* lua: update to pull shebang fixThomas Vigouroux2020-11-252-2/+4
|
* lua: fix "then" highlightingThomas Vigouroux2020-11-231-2/+2
|
* Add lua params (#605)Chinmay Dalal2020-10-211-0/+4
| | | | | | | * Add lua params * Fix * Remove redundant outer
* Treesitter indentkiyan422020-10-191-0/+23
| | | | also fixes the memoize_by_buf_tick function
* feat: Add more lua foldsMike2020-10-151-2/+3
| | | | Add repeat_statement to lua folds
* Remove textobjects moduleStephan Seitz2020-10-041-3/+0
|
* Add @keyword.operator for operators that are English words and add ↵Stephan Seitz2020-09-191-3/+7
| | | | @exception for Java/JS
* Fix #307: Use and document TSVariable/TSVariableBuiltin in all languagesStephan Seitz2020-09-141-0/+3
|
* Folds: rename query files to folds.scm to be consistentSantos Gallegos2020-09-141-0/+0
| | | | We use plural names for all query files except folds.
* Add folding for local functions in luaNolan Prochnau2020-09-101-0/+1
|
* use keyword.function instead of functionkyazdani422020-09-081-3/+3
|
* fix function/end keywords not applied for every scopekyazdani422020-09-081-3/+7
|
* fix: contional > conditional in lua hl.scmkyazdani422020-09-061-1/+1
|
* Lua: update highlightsSantos Gallegos2020-09-061-1/+7
|
* Lua: fix loop and conditional keywords highlightsSantos Gallegos2020-09-061-13/+31
|
* fix(fold): revamp foldThomas Vigouroux2020-09-011-0/+9
| | | | | | | | fix(fold): typo fix(fold): remove debug and add queries fix(fold): fallback to local scopes for folds
* chore(highlights): remove is predicate usageSteven Sojka2020-08-171-3/+0
|
* feat(highlights): add is predicateSteven Sojka2020-08-162-1/+4
|
* Lua highlights: add operator "=" and punctuationStephan Seitz2020-08-111-0/+4
|
* Lua: highlight function nameSantos Gallegos2020-08-091-7/+10
|
* Lua: fix @error captureSantos Gallegos2020-08-041-1/+1
|
* Lua locals: Make property_identifier a referenceStephan Seitz2020-08-031-0/+2
|
* Lua: update some queriesSantos Gallegos2020-07-282-0/+12
| | | | | - Basic textobjects - Highlighting punctuation symbols
* highlights: some fixesThomas Vigouroux2020-07-161-6/+6
| | | | | Add `goto` keyword for C. Fix typo for lua.
* locals(lua): simplify argsThomas Vigouroux2020-07-081-6/+2
|
* highlight(lua): fix overlapping queriesThomas Vigouroux2020-07-081-15/+21
|
* locals(lua): capture function definition paramsThomas Vigouroux2020-07-011-0/+2
|
* highlights(lua): update query to new syntaxThomas Vigouroux2020-07-011-42/+55
|
* fix(lua): update queriesThomas Vigouroux2020-05-072-28/+21
|
* locals(lua): incorrect query for field functionsThomas Vigouroux2020-04-231-8/+11
|
* highlight(lua): highlight local functionsThomas Vigouroux2020-04-231-0/+1
|
* highlight(lua): add more operatorsThomas Vigouroux2020-04-221-1/+25
|
* feat: syntax highlightingThomas Vigouroux2020-04-221-0/+36
|
* feat: first version of localsThomas Vigouroux2020-04-191-8/+8
| | | | | | | 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
* feat: add an example locals queryThomas Vigouroux2020-04-181-0/+45
This will be the guide for the implementation of locals extraction, which is treesitters name of definition/scope.