| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | indents(php): align with C indentation | Stephan Seitz | 2022-01-24 | 2 | -0/+32 |
| | | | | | Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/2357 | ||||
| * | feat(indent): Implement basic indent for gdscript. | Ryan Roden-Corrent | 2022-01-24 | 2 | -0/+36 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Indent is not handled correctly when adding new lines. It seems that functions/loops/etc. are not recognized until they have at least one indented block. For example, if you enter a newline after `func foo():`, the cursor will not be indented. If you manually indent and add a line like `pass`, e.g.: ``` func foo(): pass ``` now any insertions above or below `pass` will be indented correctly. This might be an issue with the grammar, as it seems to apply to highlights as well. The following will not be highligted ``` func foo(): ``` However, the following will be: ``` func foo(): pass ``` | ||||
| * | test(indent): rust - add test for indented comment | Munif Tanjim | 2022-01-21 | 2 | -0/+7 |
| | | |||||
| * | fix(indent): rust - support newline after closing brace | Munif Tanjim | 2022-01-21 | 1 | -0/+9 |
| | | |||||
| * | feat(indent): ecma - support common use-cases | Munif Tanjim | 2022-01-21 | 7 | -5/+118 |
| | | |||||
| * | fix(indent): c/cpp - support newline after closing brace | Munif Tanjim | 2022-01-21 | 2 | -0/+4 |
| | | |||||
| * | feat(indent): ecma - support try_catch and if_else | Munif Tanjim | 2022-01-21 | 3 | -0/+67 |
| | | |||||
| * | feat(indent): support `@aligned_indent` for python | Munif Tanjim | 2022-01-21 | 2 | -9/+9 |
| | | |||||
| * | feat: rewrite indent module | Munif Tanjim | 2022-01-21 | 6 | -54/+29 |
| | | |||||
| * | feat: improve indent module | Munif Tanjim | 2022-01-21 | 3 | -5/+5 |
| | | | | | 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 | 1 | -2/+1 |
| | | | | | | 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 | ||||
| * | fix: off-by-one errors in indent calculation | oxalica | 2021-11-28 | 1 | -4/+0 |
| | | |||||
| * | Mark failing indent tests to add them to CI | Stephan Seitz | 2021-11-24 | 6 | -36/+114 |
| | | | | | | Expected failures should be monitored so that we don't have regressions and also remove failure marks when they are resolved. | ||||
| * | add compound_lit.c test | leo60228 | 2021-08-01 | 2 | -0/+11 |
| | | |||||
| * | Use stylua for autoformat code (#1480) | Santos Gallegos | 2021-07-04 | 6 | -172/+175 |
| | | |||||
| * | tests/indent: factor out most of the code into common.lua | Jędrzej Boczar | 2021-04-23 | 6 | -208/+175 |
| | | |||||
| * | tests/indent: move common code out of main lua/ directory | Jędrzej Boczar | 2021-04-23 | 6 | -10/+135 |
| | | |||||
| * | tests/indent: move the run helper functions to top-level | Jędrzej Boczar | 2021-04-23 | 5 | -37/+38 |
| | | |||||
| * | move all tests to top-level tests/ directory | Jędrzej Boczar | 2021-04-23 | 53 | -0/+885 |
