nvim-treesitter/tests
Ryan Roden-Corrent f67eb83be5 feat(indent): Implement basic indent for gdscript.
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
```
2022-01-24 13:11:01 +01:00
..
indent feat(indent): Implement basic indent for gdscript. 2022-01-24 13:11:01 +01:00
query chore: remove swift tests for now (cause CI failure) 2022-01-18 22:09:21 +01:00
unit feat: add "experimental" key to parsers 2021-10-07 22:43:09 +02:00