neovim/runtime/lua/vim/treesitter
Jongwook Choi b6fdde5224 fix(treesitter): text alignment in checkhealth vim.treesitter
Problem: The column width 10 for parser name (lang) is too short.
For example, `markdown_inline` has 15 characters, which results in a
slight misalignment with other lines.

e.g. it looked like:

```
- OK Parser: markdown   ABI: 14, path: .../parser/markdown.so
- OK Parser: markdown_inline  ABI: 14, path: .../parser/markdown_inline.so
- OK Parser: php        ABI: 14, path: .../parser/php.so
```

Solution: Use column width 20. As of now, the longest name among those
available in nvim-treesitter has length 18 (`haskell_persistent`).

e.g.:

```
- OK Parser: markdown             ABI: 14, path: .../parser/markdown.so
- OK Parser: markdown_inline      ABI: 14, path: .../parser/markdown_inline.so
- OK Parser: php                  ABI: 14, path: .../parser/php.so
```
2024-05-13 09:19:54 +02:00
..
_fold.lua fix(treesitter): clip end row early 2024-05-07 14:36:55 +01:00
_meta.lua refactor(treesitter): language loading 2024-04-21 14:09:27 +01:00
_query_linter.lua refactor(treesitter): redesign query iterating 2024-03-19 14:24:59 +00:00
_range.lua feat(treesitter)!: incremental injection parsing 2023-08-12 16:11:36 +01:00
dev.lua fix(treesitter): escape "\" in :InspectTree #28613 2024-05-03 09:34:02 -07:00
health.lua fix(treesitter): text alignment in checkhealth vim.treesitter 2024-05-13 09:19:54 +02:00
highlighter.lua feat(api): add nvim__redraw for more granular redrawing 2024-05-02 15:57:06 +02:00
language.lua fix(treesitter): enforce lowercase language names (#28546) 2024-04-28 16:27:47 +02:00
languagetree.lua fix(treesitter): enforce lowercase language names (#28546) 2024-04-28 16:27:47 +02:00
query.lua fix(treesitter): return correct match table in iter_captures() 2024-03-27 10:39:46 +00:00