nvim-treesitter/queries/yaml
Phelipe Teles 8bd07c88b6 fix(indents/yaml): only indent mapping pair if value is a block
This improves the following situation, in which '|' is the cursor position:

```yaml
- key1: value1
  key2: value2|
```

Before this commit, by pressing Enter would result in this indentation:

```yaml
- key1: value1
  key2: value2
    |
```

Which is less convenient than this:

```yaml
- key1: value1
  key2: value2
  |
```
2022-06-14 22:37:52 +02:00
..
folds.scm Yaml: fix folds 2021-02-07 15:37:21 +01:00
highlights.scm yaml: improve highlights and locals (#946) 2021-10-26 22:47:59 -05:00
indents.scm fix(indents/yaml): only indent mapping pair if value is a block 2022-06-14 22:37:52 +02:00
injections.scm injections(yaml): inject at command list for Gitlab script 2022-02-05 18:25:35 +01:00
locals.scm yaml: improve highlights and locals (#946) 2021-10-26 22:47:59 -05:00