mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
* fix(nickel): wrong indent on line after top level comment
Previous incorrect indentation on line after top level comment:
```
# no indent after this comment
{
another = 1
}
```
Expected result:
```
# no indent after this comment
{
another = 1
}
````
14 lines
113 B
XML
14 lines
113 B
XML
{
|
|
key1 = 1,
|
|
key2 = [
|
|
2
|
|
],
|
|
key3 = {
|
|
key4 = 4
|
|
}
|
|
}
|
|
|
|
# no indent after this line
|
|
{
|
|
another = 1
|
|
}
|