| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | lua: update queries | Christian Clason | 2022-11-01 | 1 | -0/+5 | |
| | | ||||||
| * | locals(lua): fix directive not applying | beardedsakimonkey | 2022-10-17 | 1 | -6/+6 | |
| | | | | | fixes #3280 | |||||
| * | highlights: use @preproc where appropriate | ObserverOfTime | 2022-10-15 | 1 | -1/+1 | |
| | | ||||||
| * | feat(spell): support more languages | Lewis Russell | 2022-09-26 | 1 | -4/+2 | |
| | | ||||||
| * | highlights(lua): add spell | Lewis Russell | 2022-09-12 | 1 | -0/+2 | |
| | | ||||||
| * | change: allow one or more leading `;` | numToStr | 2022-08-23 | 1 | -1/+1 | |
| | | ||||||
| * | injections(lua): highlight string as `query` if starts with `;; query` | numToStr | 2022-08-23 | 1 | -0/+3 | |
| | | ||||||
| * | Split func/method definition from calls in several programming language queries | lfenzo | 2022-08-03 | 1 | -2/+2 | |
| | | ||||||
| * | fix(indents): indents for error block (css, lua) (#3207) | Kiyan | 2022-07-21 | 1 | -0/+2 | |
| | | ||||||
| * | highlights(lua): use `#eq?` instead of `#match?` | Janfel | 2022-06-24 | 1 | -1/+1 | |
| | | | | Co-authored-by: Santos Gallegos <stsewd@protonmail.com> | |||||
| * | highlights(lua): highlight only `self` as `self` | Janfel | 2022-06-24 | 1 | -1/+1 | |
| | | | | Before, all identifiers containing the substring "self" were highlighted as the builtin `self`. Now, only the identifier `self` is highlighted as `self`. | |||||
| * | fix(indent/lua): wrong for nested tables due to branch on opening pairs | Jędrzej Boczar | 2022-04-06 | 1 | -3/+0 | |
| | | ||||||
| * | Inject query into lua for set_query calls | Connor Lay (Clay) | 2022-04-06 | 1 | -0/+5 | |
| | | ||||||
| * | fix(lua): restore precedence for @variable.builtin and @constant.builtin | Christian Clason | 2022-03-12 | 1 | -14/+12 | |
| | | ||||||
| * | indents(lua): make ")" `@indent_end | Stephan Seitz | 2022-02-06 | 1 | -0/+2 | |
| | | | | | Fixes #2476 | |||||
| * | indents(lua): use `(comment) @auto` | Stephan Seitz | 2022-02-05 | 1 | -1/+0 | |
| | | ||||||
| * | indent(lua): ignore comment | Stephan Seitz | 2022-02-05 | 1 | -0/+1 | |
| | | ||||||
| * | docs: add `@zero_indent` to CONTRIBUTING.md | Stephan Seitz | 2022-02-05 | 1 | -1/+0 | |
| | | ||||||
| * | indents(lua): fix comment indentation | Stephan Seitz | 2022-02-05 | 1 | -1/+1 | |
| | | ||||||
| * | fix(indents): re-parse before each indent | Stephan Seitz | 2022-02-05 | 1 | -0/+1 | |
| | | ||||||
| * | fix(indent): lua - support `@indent_end` (#2454) | Munif Tanjim | 2022-02-04 | 1 | -0/+4 | |
| | | ||||||
| * | highlights(lua): don't highlight arguments as parameters | Stephan Seitz | 2022-01-30 | 1 | -2/+0 | |
| | | ||||||
| * | feat: rewrite indent module | Munif Tanjim | 2022-01-21 | 1 | -2/+6 | |
| | | ||||||
| * | feat: improve indent module | Munif Tanjim | 2022-01-21 | 1 | -4/+7 | |
| | | | | | get_node_at_line should return appropriate child if available | |||||
| * | feat(lua)!: switch from our fork to MunifTanjim's (#2272) | Christian Clason | 2022-01-18 | 5 | -194/+177 | |
| | | | | | | also take queries from https://github.com/MunifTanjim/nvim-treesitter-lua/tree/main/queries/lua BREAKING CHANGE: queries are not compatible; modules will have to update | |||||
| * | highlights(lua): `next` as builtin function | numToStr | 2021-12-13 | 1 | -0/+3 | |
| | | ||||||
| * | Prefer lua-match over match | Lewis Russell | 2021-11-23 | 2 | -5/+5 | |
| | | | | | as string.find is much quicker than vim.regex:match* | |||||
| * | Add basic vimscript injection in `vim.cmd`/`nvim_command`/`nvim_exec` (#1922) | vhyrro | 2021-11-16 | 1 | -0/+26 | |
| | | ||||||
| * | injections(lua): fix cdef injection | Stephan Seitz | 2021-09-25 | 1 | -0/+15 | |
| | | | | | Fixes #1840 | |||||
| * | highlights(lua): Add Lua 5.1 built-in functions | Sergio Alejandro Vargas | 2021-09-01 | 1 | -0/+9 | |
| | | ||||||
| * | highlights(lua): Add semicolons | Sergio Alejandro Vargas | 2021-08-17 | 1 | -1/+1 | |
| | | ||||||
| * | Lua: highlight uppercase variables as constants (#1690) | Santos Gallegos | 2021-08-14 | 1 | -0/+2 | |
| | | ||||||
| * | highlights(lua): Organize `function_call` queries | Sergio Alejandro Vargas | 2021-08-02 | 1 | -3/+6 | |
| | | ||||||
| * | highlights(lua): Fix method calls | Sergio Alejandro Vargas | 2021-08-02 | 1 | -1/+1 | |
| | | | | | | | The usual `function_call` query would highlight the objects at the beginning of a method call. The `method` query has to account for this, and highlight the identifier as a variable again. | |||||
| * | Lua: highlight function definitions | Santos Gallegos | 2021-07-07 | 1 | -0/+5 | |
| | | | | | | | | | | | | | | | In lua ```lua function foo() end ``` is syntax sugar for ```lua foo = function() end ``` | |||||
| * | feat(keywords) merge return and yield into keyword.return group | antonk52 | 2021-07-04 | 1 | -3/+1 | |
| | | ||||||
| * | feat(keywords) add keyword.return & keyword.yield | antonk52 | 2021-07-04 | 1 | -1/+4 | |
| | | ||||||
| * | feat: added `self` as builtin keyword for Lua | Folke Lemaitre | 2021-06-17 | 1 | -0/+2 | |
| | | ||||||
| * | Add `do_statement` to lua folds | Sergio Alejandro Vargas | 2021-05-16 | 1 | -0/+1 | |
| | | ||||||
| * | Revert "Comment: use `@combined` to create just one tree per buffer (#1252)" | Santos Gallegos | 2021-05-07 | 1 | -1/+1 | |
| | | | | | This reverts commit 4a7a713c527f57c355bc817f16fc6d955b8cce9b. | |||||
| * | Comment: use `@combined` to create just one tree per buffer (#1252) | Santos Gallegos | 2021-04-28 | 1 | -1/+1 | |
| | | | | | | | | | | | | | * Comment: use `@combined` to create just one tree per buffer There is no need to create a tree per line/block for comments. Should fix https://github.com/nvim-treesitter/nvim-treesitter/issues/1251 * Add injections for scss * Fix jsonc * Combine jsdoc | |||||
| * | fix(lua): correctly highlight field names | Thomas Vigouroux | 2021-04-22 | 1 | -1/+2 | |
| | | ||||||
| * | Add comment parser to highlight comment tags (#893) | Santos Gallegos | 2021-03-12 | 1 | -0/+2 | |
| | | | | Closes #236 | |||||
| * | feat: use @ignore for comments and multiline strings | elianiva | 2021-03-01 | 1 | -0/+2 | |
| | | ||||||
| * | add do statement to lua indents | kiyan | 2021-02-23 | 1 | -0/+1 | |
| | | ||||||
| * | Lua: highlight fields | Santos Gallegos | 2021-02-10 | 1 | -0/+1 | |
| | | ||||||
| * | Lua: improve scope queries | Santos Gallegos | 2021-02-07 | 1 | -12/+12 | |
| | | | | | | | - Set scope to parent - Group all scopes - Use the . operator | |||||
| * | fix(lua): correctly handle do_statement in locals | Thomas Vigouroux | 2021-01-27 | 1 | -8/+12 | |
| | | ||||||
| * | fix(lua): correctly highlight do_statement | Thomas Vigouroux | 2021-01-27 | 1 | -0/+6 | |
| | | ||||||
| * | lua: Add more indent nodes | Lewis Russell | 2021-01-20 | 1 | -0/+4 | |
| | | ||||||
