diff options
| author | Igor <igorlfs@ufmg.br> | 2025-06-12 23:14:30 -0300 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2025-06-13 09:24:28 +0200 |
| commit | c29969e8efbea20b65dcc398d3fc403d5e51d006 (patch) | |
| tree | 25f6f40740788e9905eb16932703b7bfe02c333e | |
| parent | feat(parsers): update bash, purescript, r, cylc, meson, mlir, xresources, mar... (diff) | |
| download | nvim-treesitter-c29969e8efbea20b65dcc398d3fc403d5e51d006.tar nvim-treesitter-c29969e8efbea20b65dcc398d3fc403d5e51d006.tar.gz nvim-treesitter-c29969e8efbea20b65dcc398d3fc403d5e51d006.tar.bz2 nvim-treesitter-c29969e8efbea20b65dcc398d3fc403d5e51d006.tar.lz nvim-treesitter-c29969e8efbea20b65dcc398d3fc403d5e51d006.tar.xz nvim-treesitter-c29969e8efbea20b65dcc398d3fc403d5e51d006.tar.zst nvim-treesitter-c29969e8efbea20b65dcc398d3fc403d5e51d006.zip | |
feat(dot): fold queries
| -rw-r--r-- | SUPPORTED_LANGUAGES.md | 2 | ||||
| -rw-r--r-- | runtime/queries/dot/folds.scm | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/SUPPORTED_LANGUAGES.md b/SUPPORTED_LANGUAGES.md index d9c56c4f2..4e3fe466d 100644 --- a/SUPPORTED_LANGUAGES.md +++ b/SUPPORTED_LANGUAGES.md @@ -61,7 +61,7 @@ Language | Tier | Queries | Node | Maintainer [disassembly](https://github.com/ColinKennedy/tree-sitter-disassembly) | unstable | `H J ` | | @ColinKennedy [djot](https://github.com/treeman/tree-sitter-djot) | unstable | `HFIJL` | | @NoahTheDuke [dockerfile](https://github.com/camdencheek/tree-sitter-dockerfile) | unstable | `H J ` | | @camdencheek -[dot](https://github.com/rydesun/tree-sitter-dot) | unstable | `H IJ ` | | @rydesun +[dot](https://github.com/rydesun/tree-sitter-dot) | unstable | `HFIJ ` | | @rydesun [doxygen](https://github.com/tree-sitter-grammars/tree-sitter-doxygen) | unstable | `H IJ ` | | @amaanq [dtd](https://github.com/tree-sitter-grammars/tree-sitter-xml) | unstable | `HF JL` | | @ObserverOfTime [earthfile](https://github.com/glehmann/tree-sitter-earthfile) | unstable | `H J ` | | @glehmann diff --git a/runtime/queries/dot/folds.scm b/runtime/queries/dot/folds.scm new file mode 100644 index 000000000..280bbb465 --- /dev/null +++ b/runtime/queries/dot/folds.scm @@ -0,0 +1,4 @@ +[ + (edge_stmt)+ + (node_stmt) +] @fold |
