Commit graph

6413 commits

Author SHA1 Message Date
nvim-treesitter-bot[bot]
2497714755 bot(parsers): update inko
Some checks are pending
Lint / Lint Lua files (push) Waiting to run
Lint / Lint query files (push) Waiting to run
Lint / Lint docs (push) Waiting to run
Tests / Build (push) Waiting to run
2026-07-18 22:36:59 +02:00
nvim-treesitter-bot[bot]
d397655e13 bot(parsers): update angular, apex, beancount, blade, bpftrace, c, cmake, cue, d, dart, devicetree, diff, djot, elixir, elm, enforce, erlang, faust, fish, forth, fortran, fsharp, gap, git_rebase, gitcommit, gleam, glimmer, glimmer_javascript, gren, groovy, haskell, htmldjango, idl, ispc, janet_simple, javadoc, json5, julia, kcl, kitty, kos, kotlin, koto, liquid, m68k, markdown, markdown_inline, matlab, meson, mlir, nickel, nim, nix, nu, ocaml, ocaml_interface, perl, php, php_only, pkl, pod, powershell, proto, ql, qmldir, qmljs, query, r, racket, razor, rego, requirements, rescript, rst, scala, sflog, slim, soql, sosl, ssh_config, superhtml, swift, systemverilog, t32, tact, templ, twig, v, vhdl, vim, vimdoc, yaml, zsh 2026-07-18 20:31:45 +00:00
Christian Clason
ddc93c6793 feat(prolog,problog)!: drop support
user removed from github
2026-07-18 22:23:55 +02:00
Christian Clason
1971f839b2 feat(diff): update parser and queries 2026-07-18 22:23:55 +02:00
Christian Clason
17f039f472 feat(wit)!: update parser and queries
Breaking change: `(package_decl)` renamed to `(decl_head)`
2026-07-18 22:23:55 +02:00
Christian Clason
78bebef150 fix(hlsplaylist,muttrc,tmux,zathurarc)!: drop support
Upstream removed all generated files from the main branch, so these
parsers are no longer installable.
2026-07-18 22:23:55 +02:00
Christian Clason
07204cd6ae feat(tmux)!: update parser and queries
Breaking change: removed nodes
2026-07-18 22:23:55 +02:00
Christian Clason
8dfe21ae82 tests(indent): adapt scandir to nightly changes
Problem: `vim.fs.find` on Nvim 0.13 changed its return value to also
return errors (if any), which broke its use for building a list of files
in directories (since the empty error list got included).

Solution: Only capture first return value.
2026-07-18 22:23:55 +02:00
Christian Clason
e778b6097d feat(jinja,jinja_inline)!: update parser and queries
Breaking change: replace anonymous control flow nodes with named nodes.
2026-07-18 22:23:55 +02:00
Christian Clason
fc6ad62eab feat(gnuplot!): update parser and queries
Breaking change: full grammar rewrite for 2.0
2026-07-18 22:23:55 +02:00
Christian Clason
536de0c8ae fix(ruby): add anchors to doc comment headers
Prevents catastrophic slowdown in the tree-sitter query engine after
0.26.10.
2026-07-18 22:23:55 +02:00
Christian Clason
515b2f6e2f ci(emmylua): pin emmyluals at v0.22.0
Later versions trigger spurious warnings in the async wrappers.
2026-07-18 22:23:55 +02:00
Christian Clason
35aa36a65b feat(markdown): conceal backslash in escapes 2026-07-18 22:23:55 +02:00
Christian Clason
61efd016eb docs(slint): mark as unmaintained
Breaking grammar updates without reference queries
2026-07-18 22:23:55 +02:00
Christian Clason
5507d1e117 chore(csharp): move to tier 1
Breaking changes to HEAD affect downstream grammars (e.g., razor),
so we need to pin to releases and update only when all dependents
bump the tracked version.
2026-07-18 22:23:55 +02:00
Christian Clason
b00c4ca723 feat(swift)!: update parser and queries
Breaking change: replace anonymous node `"nil"` with named node
`(nil_literal)`.
2026-07-18 22:23:55 +02:00
Christian Clason
afa0cb8669 feat(c3)!: update parser and queries
Breaking change: add `expression` supertype
2026-07-18 22:23:55 +02:00
Christian Clason
0011ad541b feat(gnuplot)!: update parser and queries
Breaking change: full rewrite for Gnuplot 6.x

Also add folds query
2026-07-18 22:23:55 +02:00
Christian Clason
2ec268b5d0 feat(r)!: update parser and queries
Breaking change: remove node `(return)` in favor of `(identifier)`
2026-07-18 22:23:55 +02:00
Christian Clason
0c3a9cdfa2 feat(c3)!: update parser and queries
Update for C3 v0.8
2026-07-18 22:23:55 +02:00
Christian Clason
7a7a1591e0 feat(rescript)!: update parser and queries
Breaking change: `(comment)` node is split into `(line_comment)` and
`(block_comment)`
2026-07-18 22:23:55 +02:00
Christian Clason
0f2324ac88 feat(razor)!: update parser and queries
Breaking change: `(at_await)` node removed
2026-07-18 22:23:55 +02:00
Christian Clason
ef7a00503b feat(enforce)!: update parser and queries
Breaking change: rename directive nodes `(foo)` to `(preproc_foo)`.
2026-07-18 22:23:55 +02:00
Christian Clason
3e1f54c1ce feat(kotlin)!: update parser and queries
Breaking change: replace`${` and `}` nodes in interpolated expressions,
by `(interpolation_expression_start)` and `(interpolation_expression_end)`
2026-07-18 22:23:55 +02:00
Christian Clason
13b9486db3 feat(fortran)!: update parser and queries
Breaking change: drop escape for operator nodes
2026-07-18 22:23:55 +02:00
Christian Clason
4916d6592e fix(health): normalize rtp when checking install_dir
Problem: Windows.

Solution: vim.fs.normalize.
2026-04-03 15:11:40 +02:00
Christian Clason
234d76709e ci(tests): remove ilammy/msvc-dev-cmd
Problem: Action uses deprecated Node 20, and Windows runners have a
current msvc build tools by default.

Solution: Remove action.
2026-04-03 14:38:57 +02:00
Christian Clason
2098db61dc fix(yuck): improper use of supertypes in queries
Problem: `(ast_block)` is a supertype, of which `(symbol)` (among
others) is a subtype, which makes the final local pattern invalid.
(This was not noticed before because the parser is stuck at ABI 14
due to a missing `tree-sitter.json`.)

Solution: Fix the pattern and use supertype where appropriate.
2026-04-03 14:23:36 +02:00
Riley Bruins
81295eb0c5
feat(parsers): add jjdescription (#8625) 2026-04-03 10:43:28 +02:00
Christian Clason
539abf6da5 chore: remove redundant emmyluarc entry 2026-04-02 19:03:52 +02:00
Christian Clason
6878ae017d ci: migrate to emmyluals 2026-04-02 15:00:21 +02:00
Christian Clason
c82bf96f0a feat!: drop support for Nvim 0.11 2026-04-01 14:59:03 +02:00
Christian Clason
90cd6580e7 tests: add stable Nvim 2026-04-01 14:59:03 +02:00
nvim-treesitter-bot[bot]
7caec274fd bot(parsers): update beancount, gotmpl, heex, helm, idl, javadoc, jinja, jinja_inline, just, kotlin, liquid, mlir, ocaml, ocaml_interface, pkl, pod, rust, supercollider, typoscript 2026-03-28 07:33:46 +00:00
Riley Bruins
da8bf82a53
fix(kotlin): regex and printf injections not applying (#8613) 2026-03-27 15:22:25 -07:00
Riley Bruins
f059649bc3
fix(go): highlight rune as @character (#8612) 2026-03-27 11:37:59 -07:00
Adrian Wang
6620ae1c44
fix(install): use rename-before-unlink on all platforms
Problem: On macOS Apple Silicon, a plain unlink can leave stale code
signature metadata in the kernel cache, causing SIGKILL on next page
fault after `TSUpdate`.

Solution: Apply the rename-then-unlink strategy unconditionally instead
of only on Windows.
2026-03-23 10:32:51 +01:00
Christian Clason
8755152551
fix(parsers): track default branch for perl, pod (#8605)
Problem: non-default "release" branch tracking is broken, but the
default branch contains grammar.json.

Solution: track default `main` branch and generate parser from JSON.
2026-03-22 16:49:17 +00:00
Christian Clason
0e0db770f2 fix(parsers): don't specify default branch 2026-03-22 12:20:33 +01:00
nvim-treesitter-bot[bot]
e5f65e31a5 bot(parsers): update arduino, c3, cue, dart, fortran, fsharp, git_rebase, gleam, heex, idl, just, kotlin, ledger, mlir, nim, nu, php, php_only, powershell, proto, racket, rust, scheme, swift, vhdl 2026-03-21 07:17:33 +00:00
dependabot[bot]
877f724846 ci: bump actions/create-github-app-token in the actions group
Bumps the actions group with 1 update: [actions/create-github-app-token](https://github.com/actions/create-github-app-token).


Updates `actions/create-github-app-token` from 2 to 3
- [Release notes](https://github.com/actions/create-github-app-token/releases)
- [Commits](https://github.com/actions/create-github-app-token/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/create-github-app-token
  dependency-version: '3'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-03-20 17:42:48 +01:00
Christian Clason
53f6ce29df feat(zsh)!: update parser and queries 2026-03-20 10:43:21 +01:00
Christian Clason
2b50ab5ccb test: replace plenary with plentest.nvim
Problem: plenary.nvim as test runner is overkill and no longer
maintained.

Solution: Replace with a minimal fork based on Neovim API and vendored
luassert.
2026-03-17 18:20:03 +01:00
Christian Clason
2cc172c28e test(indent): we have scan_dir at home 2026-03-17 09:47:15 +01:00
Christian Clason
c9fea86a5a test(indent): drop plenary.path 2026-03-16 22:51:41 +01:00
George Harker
b9f9d692f1
feat(zsh): update parser and queries
add `;|` highlighting
2026-03-16 20:08:58 +01:00
Christian Clason
ebc3201290 fix(zsh): mark as tier 2 2026-03-16 10:03:08 +01:00
Christian Clason
2f5d4c3f3c docs(readme): clarify pre-release support policy 2026-03-14 19:46:07 +01:00
Christian Clason
f873ec2955 refactor(config): no trailing slash in installdir 2026-03-14 19:19:10 +01:00
Luca Papagni
88a217f570
Show errors on vim.system failure (#8552)
Problem: `vim.system` throws an error when `uv.spawn` fails, in
particular when `cmd` or `cwd` does not exist. This kills the coroutine,
which makes the corresponding async call hang.

Solution: Wrap `vim.system` in a function that catches any error and
returns it as `stderr` in a `SystemObj`.

Co-authored-by: Christian Clason <c.clason@uni-graz.at>
2026-03-14 19:06:38 +01:00