aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* feat(leo): highlights casting and record expressions addedRobert Horvath2024-12-301-2/+21
|
* feat(ipkg): add parser and queries (#7277)Serhii Khoma2024-12-308-0/+143
| | | Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
* feat(ruby): add injection for debugger command strings (#7480)Derek Stride2024-12-302-0/+23
|
* bot(lockfile): update editorconfig, nu, sql, templ, vento, vhdl, xresourcesnvim-treesitter-bot[bot]2024-12-301-7/+7
|
* fix(ssh_config): highlight `"always"` (#7507)ObserverOfTime2024-12-291-0/+2
|
* bot(lockfile): update c, leo, nu, ssh_confignvim-treesitter-bot[bot]2024-12-291-4/+4
|
* bot(lockfile): update tsx, typescriptnvim-treesitter-bot[bot]2024-12-281-2/+2
|
* bot(lockfile): update gap, gaptst, scalanvim-treesitter-bot[bot]2024-12-271-3/+3
|
* bot(lockfile): update astronvim-treesitter-bot[bot]2024-12-261-1/+1
|
* bot(lockfile): update heex, verilognvim-treesitter-bot[bot]2024-12-251-2/+2
|
* feat(inko): highlight the "type" keywordYorick Peterse2024-12-242-1/+2
| | | | | This keyword will be released in 0.18.0 and deprecate the "class" keyword, which in turn will be removed in 0.19.0.
* bot(lockfile): update bp, gnuplot, just, xresourcesnvim-treesitter-bot[bot]2024-12-241-4/+4
|
* ci(update): unblock gnuplotChristian Clason2024-12-231-1/+1
|
* bot(lockfile): update kconfig, luau, odin, python, regex, vnvim-treesitter-bot[bot]2024-12-231-6/+6
|
* bot(lockfile): update bicep, java, puppet, python, verilog, zignvim-treesitter-bot[bot]2024-12-221-6/+6
|
* feat(kconfig): adapt queries to parser changesAmaan Qureshi2024-12-223-13/+16
|
* bot(lockfile): update koto, nu, powershellnvim-treesitter-bot[bot]2024-12-211-3/+3
|
* bot(lockfile): update javanvim-treesitter-bot[bot]2024-12-201-1/+1
|
* bot(lockfile): update kotlin, poe_filter, rust, slintnvim-treesitter-bot[bot]2024-12-191-4/+4
|
* bot(lockfile): update hoon, nunvim-treesitter-bot[bot]2024-12-181-2/+2
|
* fix(nu): perf issue of highlight.scm (#7475)zc he2024-12-171-2/+3
|
* fix(lua): remove duplicate `nvim_command` (#7477)phanium2024-12-171-2/+1
|
* bot(lockfile): update apex, fortran, nu, scala, sflog, soql, sosl, templnvim-treesitter-bot[bot]2024-12-171-8/+8
|
* bot(lockfile): update c, editorconfig, objc, powershell, scala, snakemake, ↵nvim-treesitter-bot[bot]2024-12-161-10/+10
| | | | t32, templ, vhdl, xresources
* fix(gren): adapt queries to parser changes (#7472)Mae Brooks2024-12-162-3/+3
| | | `case of` -> `when is`
* feat(zig): improve indents (#7471)Vincent Rischmann2024-12-151-0/+5
|
* feat(go): string regex highlightsRiley Bruins2024-12-151-0/+15
|
* fix(go): properly apply injections in stringsRiley Bruins2024-12-151-6/+9
|
* bot(lockfile): update apex, sflog, soql, soslnvim-treesitter-bot[bot]2024-12-151-4/+4
|
* bot(lockfile): update solidity, vnvim-treesitter-bot[bot]2024-12-141-2/+2
|
* bot(lockfile): update http, nu, scalanvim-treesitter-bot[bot]2024-12-131-3/+3
|
* bot(lockfile): update elm, liquidsoap, scala, slint, sql, templnvim-treesitter-bot[bot]2024-12-121-6/+6
|
* feat(soql): update parser and queries (#7461)Heber2024-12-122-5/+8
|
* bot(lockfile): update hoon, markdown, markdown_inline, nu, roc, typespecnvim-treesitter-bot[bot]2024-12-111-6/+6
|
* bot(lockfile): update elixir, powershellnvim-treesitter-bot[bot]2024-12-101-2/+2
|
* feat(sxhkd): add bash injection for `(command)` (#7456)phanium2024-12-101-0/+3
|
* bot(lockfile): update astro, swift, xresourcesnvim-treesitter-bot[bot]2024-12-091-3/+3
|
* bot(lockfile): update godot_resource, templnvim-treesitter-bot[bot]2024-12-081-2/+2
|
* bot(lockfile): update nu, t32, typespecnvim-treesitter-bot[bot]2024-12-071-3/+3
|
* bot(readme): updatenvim-treesitter-bot[bot]2024-12-061-0/+1
|
* feat(circom): add parser and queriesAlexandr Martirosyan2024-12-066-0/+175
|
* bot(lockfile): update c_sharp, powershell, t32nvim-treesitter-bot[bot]2024-12-061-3/+3
|
* fix(julia): fix incorrect documentation queryFredrik Ekre2024-12-051-2/+4
| | | | | | | | | This patch fixes an inprecise `@string.documentation` query introduced in https://github.com/nvim-treesitter/nvim-treesitter/pull/7391. The pattern `(string_literal) . (call_expression)` matches also for example `"hello"` in `foo("hello", bar())`. Similarly to https://github.com/nvim-treesitter/nvim-treesitter/pull/7436, this patch limits the pattern to top-level statements.
* bot(lockfile): update python, starlark, tealnvim-treesitter-bot[bot]2024-12-051-3/+3
|
* feat(inko): highlight the "copy" keywordYorick Peterse2024-12-041-0/+1
| | | | This keyword is added as part of the upcoming 0.18.0 release.
* fix(julia): fix incorrect documentation queryFredrik Ekre2024-12-041-1/+5
| | | | | | | | | | | | | | This patch fixes an inprecise `@string.documentation` query introduced in https://github.com/nvim-treesitter/nvim-treesitter/pull/7391. Specifically, the pattern `(string_literal) . (identifier)` matches also for example `"hello"` in ```julia foo("hello", world) @info "hello" world ``` To fix this, this patch limits the pattern to top-level statements.
* bot(lockfile): update dtd, inko, powershell, xml, yamlnvim-treesitter-bot[bot]2024-12-041-5/+5
|
* bot(lockfile): update apex, sflog, soql, sosl, superhtml, swift, t32, toml, vhdlnvim-treesitter-bot[bot]2024-12-031-9/+9
|
* bot(lockfile): update apex, editorconfig, elixir, ledger, markdown, ↵nvim-treesitter-bot[bot]2024-12-023-18/+12
| | | | markdown_inline, sflog, soql, sosl, styled, swift, xresources
* feat(gomod): punctuation, toolchain highlightsRiley Bruins2024-12-021-1/+11
| | | | | | | | | | | | | | | | | | | | | Reference file: ```gomod module github.com/klauspost/reedsolomon go 1.21 require github.com/klauspost/cpuid/v2 v2.2.8 require golang.org/x/sys v0.24.0 // indirect retract ( v1.12.2 // https://github.com/klauspost/reedsolomon/pull/283 v1.11.6 // https://github.com/klauspost/reedsolomon/issues/240 [v1.11.3, v1.11.5] // https://github.com/klauspost/reedsolomon/pull/238 v1.11.2 // https://github.com/klauspost/reedsolomon/pull/229 ) ```