aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* feat(pascal): Add asm language injection for PascalPhilip Zander2025-02-201-4/+2
|
* feat(promql): do not use regex for string labels (#7669)Daniil Leontev2025-02-206-2/+86
| | | | | | | | | | | | | | | | | In Prometheus, label values are treated as strings when used with the `=` and `!=` operators, and as regular expressions when used with the `=~` and `!~` operators. Injecting and then highlighting all label values as regex leads to a situation where entirely valid **string** label values containing regex special characters are mistakenly parsed and highlighted as regex. This results in syntax errors, causing labels to be highlighted incorrectly. For example, in `foo{bar=~"[a-z]{1,3}"}`, `{` and `}` are regex special characters, so regex highlighting is expected. However, in `foo{path="/foo/{id}"}`, `{` and `}` are just part of the string and have no special meaning, so the whole value should be highlighted as a string.
* bot(lockfile): update pascal, vnvim-treesitter-bot[bot]2025-02-201-2/+2
|
* feat(java): add injections for markdown documentation commentsRobert Muir2025-02-201-0/+12
| | | | | | Since Java 23, java documentation supports markdown. It is supported by a '///' line comment followed by mandatory white space: https://openjdk.org/jeps/467
* feat(yaml): capture "boolean strings" (#7512)Chris Grieser2025-02-191-0/+17
| | | | | | See for example: https://www.bram.us/2022/01/11/yaml-the-norway-problem/ values based on: https://yamllint.readthedocs.io/en/stable/rules.html#module-yamllint.rules.truthy Parser targets YAML 1.2, which has stricter promotions.
* fix(css): do not fold top-level blocks (#7562)Michael Parque2025-02-191-0/+6
| | | | | | Using (block) makes the fold behavior only work on the line that the block starts not the start line of the statement, which is unideal when the preceding statement spans multiple lines. instead, use all top-level statements explicitly from https://github.com/tree-sitter/tree-sitter-css/blob/master/grammar.js
* feat(gomod): support `tool` directive (#7649)Yuki Ito2025-02-191-0/+4
|
* fix(earthfile): adapt to new default branch (with external scanner)Christian Clason2025-02-192-2/+2
|
* bot(lockfile): update mlir, swiftnvim-treesitter-bot[bot]2025-02-191-2/+2
|
* ci(update): block nickel (ABI 15)Christian Clason2025-02-181-1/+1
|
* bot(lockfile): update fsharp, razornvim-treesitter-bot[bot]2025-02-181-2/+2
|
* feat(inko)!: remove the "class" keyword (#7663)Yorick Peterse2025-02-172-2/+1
| | | | | | This keyword is deprecated as of 0.18.1 (released on February 12, 2025) and is being removed as part of the upcoming 0.19.0 release. BREAKING CHANGE: replace with `type`.
* feat(nu): new attribute syntax and add folds.scm (#7650)zc he2025-02-162-9/+18
|
* feat(parsers)!: drop orgChristian Clason2025-02-163-11/+0
| | | | | The parser has neither queries nor a listed maintainer here and hasn't seen updates in two years.
* bot(lockfile): update vnvim-treesitter-bot[bot]2025-02-161-1/+1
|
* bot(lockfile): update c_sharp, enforce, erlang, mlir, nunvim-treesitter-bot[bot]2025-02-151-5/+5
|
* bot(lockfile): update julia, vhsnvim-treesitter-bot[bot]2025-02-141-2/+2
|
* bot(lockfile): update apex, sflog, soql, sosl, superhtmlnvim-treesitter-bot[bot]2025-02-131-5/+5
|
* bot(lockfile): update apex, perl, sflog, soql, soslnvim-treesitter-bot[bot]2025-02-121-5/+5
|
* bot(lockfile): update typst, vnvim-treesitter-bot[bot]2025-02-111-2/+2
|
* feat(sparql): add regex injectionginnyTheCat2025-02-101-0/+6
|
* feat(typescript): highlight awaited functions with type parametersOmar Valdez2025-02-101-0/+12
|
* bot(lockfile): update c_sharp, http, idl, perlnvim-treesitter-bot[bot]2025-02-101-4/+4
|
* ci(update): block t32 (ABI 15)Christian Clason2025-02-091-1/+1
|
* bot(lockfile): update c, mlir, printfnvim-treesitter-bot[bot]2025-02-091-3/+3
|
* fix(razor): mark `npm` as required for generating from sourceAmaan Qureshi2025-02-081-0/+1
|
* bot(lockfile): update erlang, gleam, jinja, jinja_inline, ziggy, ziggy_schemanvim-treesitter-bot[bot]2025-02-082-8/+8
|
* bot(readme): updatenvim-treesitter-bot[bot]2025-02-081-0/+2
|
* feat(jinja): add parser and queries (#7573)loongtao.zhang2025-02-086-0/+204
| | | | Signed-off-by: loongtao.zhang <loongtao.zhang@outlook.com> Co-authored-by: Riley Bruins <ribru17@hotmail.com>
* feat(enforce): add parser and queries (#7626)simonvic2025-02-088-0/+295
|
* feat(hyprlang): bash injection for bindings with descriptionsOmar Valdez2025-02-081-0/+2
|
* bot(lockfile): update asm, cpp, elixir, templnvim-treesitter-bot[bot]2025-02-071-4/+4
|
* bot(lockfile): update erlang, vhsnvim-treesitter-bot[bot]2025-02-062-3/+3
| | | | lock sql parser (ABI 15)
* feat(nu)!: added some new operators, removed deprecated keyword `register` ↵zc he2025-02-052-2/+17
| | | | (#7620)
* bot(lockfile): update erlang, fsharpnvim-treesitter-bot[bot]2025-02-051-2/+2
|
* Fix panic!, assert*!, and dbg! macro queries.Kieran Siek2025-02-041-6/+6
|
* feat(formatter): support formatting missing nodesRiley Bruins2025-02-041-0/+11
| | | | | | | | | | | | | | | | | This commit makes missing nodes take formatting identical to that of regular named nodes, with the only exception being that a newline will not be prepended to a node name. E.g. this pattern: ```query (MISSING identifier) ``` will *not* be changed to: ```query (MISSING (identifier)) ```
* fix(formatter): prefer #-prefixed predicatesRiley Bruins2025-02-041-0/+3
| | | | | | This prevents the formatter for appending a space after the "." in a predicate prefix, and changes it to a "#" to match all other occurrences in the codebase.
* bot(lockfile): update cue, erlang, janet_simplenvim-treesitter-bot[bot]2025-02-041-3/+3
|
* bot(lockfile): update c, query, rst, swift, vhdlnvim-treesitter-bot[bot]2025-02-031-5/+5
|
* feat(query): highlights for dot-prefixed predicatesRiley Bruins2025-02-021-0/+3
|
* feat(query): highlights for missing nodesRiley Bruins2025-02-021-0/+5
|
* Revert "ci(update): block vhdl (ABI 15)"Christian Clason2025-02-021-1/+1
| | | | This reverts commit 1545e964e299176375efd84867dcf82fbff52ee2.
* ci(update): block vhdl (ABI 15)Christian Clason2025-02-021-1/+1
|
* bot(lockfile): update desktop, matlab, perl, query, scalanvim-treesitter-bot[bot]2025-02-021-5/+5
|
* feat(typst): capture multilevel headings (#7595)Dimitris Dimitropoulos2025-02-011-2/+17
|
* feat(razor): add parser and queries (#7545)Tristan Knight2025-02-016-0/+95
|
* bot(lockfile): update bash, desktop, haskell, julia, nix, objc, typstnvim-treesitter-bot[bot]2025-02-012-8/+8
|
* bot(lockfile): update c, c_sharp, cpp, css, djot, dtd, earthfile, go, html, ↵nvim-treesitter-bot[bot]2025-01-311-25/+25
| | | | java, javascript, json, lua, nix, ocaml, ocaml_interface, ocamllex, php, php_only, python, ruby, scala, tsx, typescript, xml
* fix(typescript): don't highlight default values as parameters (#7599)Omar Valdez2025-01-301-2/+2
|