Commit graph

5064 commits

Author SHA1 Message Date
Christian Clason
bfa217af76 Revert "ci(tests): drop flaky wing parser tests"
This reverts commit f08a9d97f7.

(Fixed by skipping bindings when generating.)
2024-04-14 13:36:22 +02:00
Christian Clason
9a39ec072a fix(install): do not generate bindings when generating parser
These are irrelevant for us and may lead to conflicts with committed
outdated bindings (e.g., wing).
2024-04-14 13:36:22 +02:00
Christian Clason
78bfee7ddb ci(tests): use nvim nightly for win+cl 2024-04-14 13:34:44 +02:00
nvim-treesitter-bot[bot]
65ce6fde2d bot(lockfile): update arduino, cuda, dtd, glsl, hlsl, http, norg, slang, slint, sql, swift, templ, tlaplus, unison, wing, xml, yaml 2024-04-14 11:06:54 +00:00
Christoph Sax
f22f024e78
feat(t32): update queries from upstream (#6440)
Adds support for new node type `elif_block`.
2024-04-14 12:58:21 +02:00
Christoph Sax
2c6ab9a09c feat(t32): use filetype "trace32" 2024-04-14 12:51:05 +02:00
Christian Clason
f08a9d97f7 ci(tests): drop flaky wing parser tests 2024-04-13 20:04:38 +02:00
JoranHonig
3e1d836e0e fix(solidity): adapt queries to parser changes 2024-04-13 20:04:38 +02:00
Dennis van den Berg
ef267f0c28
fix: add highlights for static member expression (#6393) 2024-04-12 14:11:01 +02:00
nvim-treesitter-bot[bot]
7e6b044be8 bot(lockfile): update bash, cpp, earthfile, mermaid, muttrc, pascal, racket, scheme, tcl, v, wing 2024-04-12 08:14:41 +00:00
nvim-treesitter-bot[bot]
b0ac1135fe bot(readme): update 2024-04-11 23:09:12 +02:00
Gaëtan Lehmann
6ae470fd8f
feat: add earthfile parser (#6395)
---------

Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
2024-04-11 23:06:52 +02:00
Bruno BELANYI
5c4892b055
fix(textproto): use 'pbtxt' filetype (#6427)
This is the actual name of the detected filetype.
2024-04-11 18:03:22 +02:00
nvim-treesitter-bot[bot]
b7339ffb9a bot(lockfile): update svelte, v, wing 2024-04-11 07:22:50 +00:00
Laytan
2bad828b48
fix(odin): updates queries from upstream (#6425) 2024-04-10 19:46:25 +09:00
nvim-treesitter-bot[bot]
8253aac419 bot(lockfile): update arduino, asm, go, odin, styled, typst, v, wing, yaml 2024-04-10 11:23:53 +02:00
Amaan Qureshi
3af2d894d4 fix(go): update queries from upstream
also bump templ to match
2024-04-10 11:07:30 +02:00
Amaan Qureshi
d90e11756d
fix(solidity): update queries from upstream (#6424) 2024-04-10 07:22:05 +00:00
Guilherme Soares
c16f66cca0
feat(java): add when operator (#6420) 2024-04-09 12:25:02 -07:00
nvim-treesitter-bot[bot]
fbe76211f4 bot(lockfile): update arduino, c_sharp, dart, elixir, glsl, java, json, mlir, rust, swift, v, wing 2024-04-09 09:13:33 +00:00
Riley Bruins
e9321bb914
feat(nix): misc cleanups + comment injection (#6418)
* fix(nix): highlight strings within interpolations

* feat(nix): move `derivation` to function.builtin

* fix(nix): removes all `priority` workarounds

* feat(nix): arbitrary injections using `#` comments
2024-04-09 14:20:26 +09:00
neuromagus
46b587eb38
fix(c_sharp): highlight raw_string_literal 2024-04-08 17:54:47 -04:00
nvim-treesitter-bot[bot]
11a3584b81 bot(lockfile): update c, commonlisp, cuda, dart, glsl, gstlaunch, hlsl, javascript, roc, slang, t32, v, wgsl_bevy 2024-04-07 03:14:22 -04:00
Amaan Qureshi
53c48a9229 fix(rust): update queries from upstream 2024-04-07 02:58:11 -04:00
nvim-treesitter-bot[bot]
a2d6678bb2 bot(lockfile): update c, cuda, glsl, hlsl, javascript, python, rust, slang, tlaplus, typst, v, wing 2024-04-06 12:10:58 +02:00
David Guevara
e6cd337e30
fix(bash): fix printf injection queries (#6405) 2024-04-05 10:01:19 +02:00
Christian Clason
00debd1fb1 feat(lua): add exec_lua injection for nvim tests 2024-04-05 09:20:31 +02:00
nvim-treesitter-bot[bot]
8183bfa75e bot(lockfile): update c, cpp, latex, rust, wing 2024-04-05 09:00:32 +02:00
ganhaque
1b050206e4
fix(rust): indentation in multi-line tuple pattern (#6402)
* fix(rust): indentation in multi-line tuple pattern

* test(indent): rust - add test for tuple pattern indent
2024-04-04 15:12:31 +00:00
Omar Zeghouani
8f444c9fcb chore: update downstream fish highlights 2024-04-04 12:22:50 +02:00
ganhaque
5489e2150f fix(rust): indentation in multi-line for expression
Fix indentation when the for loop expression is on multiple lines

Example:

previous:

```rust
for (
    abc,
    def
) in thing.iter() {
        // ...
    }
```
new:

```rust
for (
    abc,
    def
) in thing.iter() {
    // ...
}
```
2024-04-04 09:50:27 +02:00
ganhaque
4d4b63692f fix(rust): indentation in tuple type patterns 2024-04-04 09:50:27 +02:00
nvim-treesitter-bot[bot]
bf80e253a8 bot(lockfile): update angular, gitcommit, nix, roc, rst, templ, tlaplus, v, wing 2024-04-04 09:49:26 +02:00
Stephan Seitz
cc0e29727a highlights(cuda): add support for __managed__
See https://github.com/tree-sitter-grammars/tree-sitter-cuda/pull/68
2024-04-03 11:11:01 +02:00
nvim-treesitter-bot[bot]
be4d6e858f bot(lockfile): update cuda, dtd, fish, glsl, hlsl, markdown, markdown_inline, slang, solidity, templ, tlaplus, wing, xml, yaml 2024-04-03 09:58:47 +02:00
nvim-treesitter-bot[bot]
54cf9180a3 bot(lockfile): update commonlisp, dart, glsl, godot_resource, roc, slang, v, wgsl_bevy, wing 2024-04-02 03:00:59 -04:00
Mitchell Hanberg
d31eb5442d feat(elixir): add stab_clause to folds 2024-04-01 16:49:49 -04:00
nvim-treesitter-bot[bot]
30492e7e1c bot(lockfile): update cuda, hlsl, latex, roc 2024-04-01 14:30:58 +00:00
Christian Clason
c51d503868 docs(readme): update roadmap link 2024-04-01 15:06:16 +02:00
Christian Clason
e4ba167af0 fix(latex)!: adjust to dropped parser.c 2024-04-01 14:52:14 +02:00
Jonas Hietala
25ed904c75
feat(djot): update queries (#6375)
- Adjust some highlights to fit context better
- Conceal inline content
- Add locals
- Add folds
2024-04-01 13:42:12 +02:00
Riley Bruins
0bfa0be5e4 fix(nix): highlight ellipsis as builtin parameter
This maintains consistency with a lot of other languages that also have
ellipses as parameter types, which we typically highlight as
`@variable.parameter.builtin`
2024-04-01 11:39:38 +02:00
Riley Bruins
3c996dc9fa feat(nix): misc. operator/punctuation highlights 2024-04-01 11:39:38 +02:00
nvim-treesitter-bot[bot]
ee2785ba6a bot(lockfile): update gdscript, rst, swift, v 2024-04-01 11:20:03 +02:00
nat-418
905fedfa28 feat(roc): add new parser tree-sitter-roc 2024-04-01 11:19:45 +02:00
nvim-treesitter-bot[bot]
1d1d92e94a bot(lockfile): update djot, snakemake, v 2024-03-31 14:32:41 +00:00
Seb Tomasini
ff79725428
fix(uninstall): use correct path separator on windows (#6369) 2024-03-31 11:37:53 +02:00
Oliver Thomas
6e0b031ebb feat(snakemake): add indentation queries 2024-03-30 12:46:43 +01:00
nvim-treesitter-bot[bot]
5127a84407 bot(lockfile): update beancount, liquid, ocaml, ocaml_interface, v, vento, wing 2024-03-30 11:16:35 +00:00
vsajko
c65413f2ac
fix(python): add staticmethod to builtin decorators 2024-03-30 01:30:13 +02:00