nvim-treesitter/tests/indent/nickel/indent-newline.ncl
Zheng PiaoDan dba8c8e781
fix(nickel): wrong indent on line after top level comment (#4792)
* 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
}
````
2023-05-13 15:03:05 +09:00

14 lines
113 B
XML

{
key1 = 1,
key2 = [
2
],
key3 = {
key4 = 4
}
}
# no indent after this line
{
another = 1
}