| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-08-03 | Split func/method definition from calls in python highlighting query | lfenzo | |
| 2022-08-03 | Add racket support | 6cdh | |
| 2022-08-03 | other folds added | ShootingStarDragons | |
| 2022-08-03 | change tab to space | ShootingStarDragons | |
| 2022-08-03 | add folds.scm | ShootingStarDragons | |
| 2022-07-28 | highlights(c/cpp): move attributes to C (again) | Stephan Seitz | |
| Let's hope that this time the C tests pass, also for the built-in C parser. | |||
| 2022-07-27 | highlights(php): highlight more string types and escapes (#3226) | Matty Patatty | |
| 2022-07-25 | Support TOML metadata in Markdown injections | Andy Freeland | |
| Hugo, Zola, and likely other static site generators use `+++` for TOML, not YAML. | |||
| 2022-07-21 | fix(indents): indents for error block (css, lua) (#3207) | Kiyan | |
| 2022-07-20 | highlights(c): Lower the priority of @variable | mliszcz | |
| Lower the priority of @variable to prefer @parameter highlight when identifier appears in parameter_declaration. Fixes #3061 | |||
| 2022-07-20 | Change to using an explicit list of "def-likes" for clojure (#3202) | Oliver Marshall | |
| 2022-07-17 | add ui_binding to fold (#3191) | Access | |
| 2022-07-16 | highlights(julia): add "mutable" keyword | Stephan Seitz | |
| 2022-07-15 | fix: disable elm parser in markdown to avoid segfault | kiyan | |
| the Elm parser segfaults when injected in markdown. Disable it for now. See https://github.com/elm-tooling/tree-sitter-elm/issues/124 | |||
| 2022-07-14 | Highlight sql comments (#3178) | Robert Liebowitz | |
| 2022-07-13 | Updated queries and parser version | Andrew Helwer | |
| 2022-07-12 | Fix and add some highlight (#3168) | Access | |
| 2022-07-10 | add go1.18 any type | Viorel Craescu | |
| 2022-07-09 | remove type definition | Viorel Craescu | |
| 2022-07-09 | add type def highlight, add field declaration highlight and remove constant ↵ | Viorel Craescu | |
| highlight | |||
| 2022-07-09 | feat(vala)!: switch to @vala-lang parser | Princeton Ferro | |
| 2022-07-09 | add method spec highlight and block folds (#3151) | Viorel Craescu | |
| 2022-07-09 | fix(exception): erlang exception (#3150) | Access | |
| 2022-07-09 | add (module_export) to folds (#3148) | Access | |
| 2022-07-09 | fix: add more indentations for ruby (#3139) | Eric Zheng (PiaoDan) | |
| 2022-07-09 | feat(erlang highlight): support erlang highlight (#3141) | Access | |
| 2022-07-08 | remove accidental text | Roberto Pommella Alegro | |
| 2022-07-08 | Add heredoc language injection for HCL | Roberto Pommella Alegro | |
| Add a heredoc language injection similar to Ruby for HCL. This allows terraform resources like this to be properly highlighted ```hcl resource "aws_iam_role" "sample" { name = "sample" assume_role_policy = <<JSON { "Version": "2012-10-17", "Statement": [ { "Action": "sts:AssumeRole", "Principal": { "AWS": "*" }, "Effect": "Allow", "Sid": "" } ] } JSON } ``` | |||
| 2022-07-08 | support the fold of haskell | ShootingStarDragons | |
| 2022-07-08 | highlights(c): highlight `,` operator as operator (#3107) | guijan | |
| 2022-07-08 | fix(rust): remove if_let from indent captures | kiyan | |
| fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/3073 | |||
| 2022-07-08 | Update lockfile and highlight queries | derekstride | |
| 2022-07-08 | Initial SQL support | derekstride | |
| 2022-07-08 | fix(go): indent const declaration | kiyan | |
| https://github.com/nvim-treesitter/nvim-treesitter/issues/3104 | |||
| 2022-07-08 | Highlight named fields in struct literals | Pieter van Loon | |
| 2022-07-07 | add fold support to qml (#3132) | Access | |
| 2022-07-07 | add qmljs (#3126) | Access | |
| 2022-07-07 | fix(ecma): indent end for bracket (#3121) | Kiyan | |
| 2022-07-03 | Use markdown metadata blocks for injection | MDeiml | |
| 2022-07-01 | fix(haskell): priority 101 for infix function precedence over variable (#3085) | Kiyan | |
| 2022-07-01 | highlights(c): highlight member-access as operator (#3096) | guijan | |
| 2022-06-28 | feat(beancount): support folding org headers (#3078) | PolarMutex | |
| requires beancount parser update Co-authored-by: Brian Ryall <brian@brianryall.xyz> Co-authored-by: Christian Clason <c.clason@uni-graz.at> | |||
| 2022-06-26 | feat(markdown)!: switch to split parser (#3048) | Matthias Deiml | |
| * switch to split markdown parser with separate block and inline parsers to improve performance * add exclude_children! directive (useful for something like Injected markdown incorrectly highlights indented docstrings #2212) * split markdown queries into block and inline ones and add the injection for inline into block grammar * add include_dir option to parser configs (needed because the two grammars don't live in the repos root directory) BREAKING CHANGE: downstream queries need to be adapted to new parser | |||
| 2022-06-25 | fix(haskell): highlight exp_name as function in infix operations | kiyan | |
| 2022-06-24 | highlights(lua): use `#eq?` instead of `#match?` | Janfel | |
| Co-authored-by: Santos Gallegos <stsewd@protonmail.com> | |||
| 2022-06-24 | highlights(lua): highlight only `self` as `self` | Janfel | |
| Before, all identifiers containing the substring "self" were highlighted as the builtin `self`. Now, only the identifier `self` is highlighted as `self`. | |||
| 2022-06-24 | Update highlights.scm | Cameron | |
| Adds `undef` and `redo` keywords. https://docs.ruby-lang.org/en/2.4.0/syntax/miscellaneous_rdoc.html#label-undef https://docs.ruby-lang.org/en/2.4.0/syntax/control_expressions_rdoc.html#label-redo+Statement | |||
| 2022-06-22 | Simplify inline conceal | Jonathan Lopez | |
| 2022-06-22 | Refactor markdown conceal code | Jonathan Lopez | |
| 2022-06-22 | Conceal markdown links | Jonathan Lopez | |
