diff options
| author | NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> | 2025-07-21 03:40:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-21 09:40:37 +0200 |
| commit | 6b3bf164b207a8d1e80dffa9c5b64f8ddbd7d585 (patch) | |
| tree | 968892bc5210452b014656c660e13e4cb1f6fd38 | |
| parent | refactor(install): replace status enum with boolean (diff) | |
| download | nvim-treesitter-6b3bf164b207a8d1e80dffa9c5b64f8ddbd7d585.tar nvim-treesitter-6b3bf164b207a8d1e80dffa9c5b64f8ddbd7d585.tar.gz nvim-treesitter-6b3bf164b207a8d1e80dffa9c5b64f8ddbd7d585.tar.bz2 nvim-treesitter-6b3bf164b207a8d1e80dffa9c5b64f8ddbd7d585.tar.lz nvim-treesitter-6b3bf164b207a8d1e80dffa9c5b64f8ddbd7d585.tar.xz nvim-treesitter-6b3bf164b207a8d1e80dffa9c5b64f8ddbd7d585.tar.zst nvim-treesitter-6b3bf164b207a8d1e80dffa9c5b64f8ddbd7d585.zip | |
feat(glimmer): add fold queries (#8020)
| -rw-r--r-- | SUPPORTED_LANGUAGES.md | 4 | ||||
| -rw-r--r-- | runtime/queries/glimmer_javascript/folds.scm | 1 | ||||
| -rw-r--r-- | runtime/queries/glimmer_typescript/folds.scm | 1 |
3 files changed, 4 insertions, 2 deletions
diff --git a/SUPPORTED_LANGUAGES.md b/SUPPORTED_LANGUAGES.md index a6ff7cd52..7a7f23505 100644 --- a/SUPPORTED_LANGUAGES.md +++ b/SUPPORTED_LANGUAGES.md @@ -101,8 +101,8 @@ ecma (queries only)[^ecma] | unstable | `HFIJL` | | @steelsojka [gitignore](https://github.com/shunsambongi/tree-sitter-gitignore) | unstable | `H J ` | | @theHamsta [gleam](https://github.com/gleam-lang/tree-sitter-gleam) | unstable | `HFIJL` | | @amaanq [glimmer](https://github.com/ember-tooling/tree-sitter-glimmer)[^glimmer] | unstable | `HFIJL` | | @NullVoxPopuli -[glimmer_javascript](https://github.com/NullVoxPopuli/tree-sitter-glimmer-javascript) | unstable | `H IJL` | | @NullVoxPopuli -[glimmer_typescript](https://github.com/NullVoxPopuli/tree-sitter-glimmer-typescript) | unstable | `H IJ ` | | @NullVoxPopuli +[glimmer_javascript](https://github.com/NullVoxPopuli/tree-sitter-glimmer-javascript) | unstable | `HFIJL` | | @NullVoxPopuli +[glimmer_typescript](https://github.com/NullVoxPopuli/tree-sitter-glimmer-typescript) | unstable | `HFIJ ` | | @NullVoxPopuli [glsl](https://github.com/tree-sitter-grammars/tree-sitter-glsl) | unstable | `HFIJL` | | @theHamsta [gn](https://github.com/tree-sitter-grammars/tree-sitter-gn) | unstable | `HFIJL` | | @amaanq [gnuplot](https://github.com/dpezto/tree-sitter-gnuplot) | unstable | `H J ` | | @dpezto diff --git a/runtime/queries/glimmer_javascript/folds.scm b/runtime/queries/glimmer_javascript/folds.scm new file mode 100644 index 000000000..04328f099 --- /dev/null +++ b/runtime/queries/glimmer_javascript/folds.scm @@ -0,0 +1 @@ +; inherits: ecma diff --git a/runtime/queries/glimmer_typescript/folds.scm b/runtime/queries/glimmer_typescript/folds.scm new file mode 100644 index 000000000..1b61e36da --- /dev/null +++ b/runtime/queries/glimmer_typescript/folds.scm @@ -0,0 +1 @@ +; inherits: typescript |
