nvim-treesitter/queries/rust
ganhaque 5489e2150f fix(rust): indentation in multi-line for expression
Fix indentation when the for loop expression is on multiple lines

Example:

previous:

```rust
for (
    abc,
    def
) in thing.iter() {
        // ...
    }
```
new:

```rust
for (
    abc,
    def
) in thing.iter() {
    // ...
}
```
2024-04-04 09:50:27 +02:00
..
folds.scm fix(rust): add const_item to folds 2024-01-20 18:50:31 +09:00
highlights.scm refactor(format): drop extra indentation for field 2024-03-21 15:51:26 +01:00
indents.scm fix(rust): indentation in multi-line for expression 2024-04-04 09:50:27 +02:00
injections.scm refactor(format): drop extra indentation for field 2024-03-21 15:51:26 +01:00
locals.scm refactor(format): drop extra indentation for field 2024-03-21 15:51:26 +01:00