| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | feat(brightscript): brightscript parser and queries (#7780) | AJ Delcimmuto | 2025-04-13 | 1 | -0/+8 |
| | | |||||
| * | feat(caddy): add parser and queries (#7588) | Vladimir Levin | 2025-03-23 | 1 | -0/+8 |
| | | | | | | --------- Co-authored-by: Christian Clason <c.clason@uni-graz.at> | ||||
| * | feat(javadoc): add parser and queries (#7749) | Robert Muir | 2025-03-23 | 1 | -0/+8 |
| | | | | | | | | | | Previously java was configured to use doxygen parser for documentation comments, but javadocs are not doxygen. Inline tags have a different syntax, block tags are not recognized, and doxygen creates a lot of errors during highlighting. Add parser for javadoc comments, with queries for highlights and injections. | ||||
| * | feat(blade): add laravel blade parser and queries (#7693) | Caleb White | 2025-03-12 | 1 | -0/+8 |
| | | |||||
| * | feat(tera): add parser and queries | uncenter | 2025-03-09 | 1 | -0/+8 |
| | | |||||
| * | feat(kdl): parser and queries (#7657) | Bert Baron | 2025-02-27 | 1 | -0/+8 |
| | | |||||
| * | fix(earthfile): adapt to new default branch (with external scanner) | Christian Clason | 2025-02-19 | 1 | -1/+1 |
| | | |||||
| * | feat(parsers)!: drop org | Christian Clason | 2025-02-16 | 1 | -7/+0 |
| | | | | | | The parser has neither queries nor a listed maintainer here and hasn't seen updates in two years. | ||||
| * | fix(razor): mark `npm` as required for generating from source | Amaan Qureshi | 2025-02-08 | 1 | -0/+1 |
| | | |||||
| * | feat(jinja): add parser and queries (#7573) | loongtao.zhang | 2025-02-08 | 1 | -0/+18 |
| | | | | | Signed-off-by: loongtao.zhang <loongtao.zhang@outlook.com> Co-authored-by: Riley Bruins <ribru17@hotmail.com> | ||||
| * | feat(enforce): add parser and queries (#7626) | simonvic | 2025-02-08 | 1 | -0/+8 |
| | | |||||
| * | feat(razor): add parser and queries (#7545) | Tristan Knight | 2025-02-01 | 1 | -0/+8 |
| | | |||||
| * | feat(slim): add parser and queries (#7425) | Théo Reichel | 2025-01-21 | 1 | -0/+8 |
| | | |||||
| * | fix(install): use std=c11 | Gabriel Holodak | 2025-01-20 | 1 | -0/+3 |
| | | |||||
| * | fix(install): preserve command return code on Windows | Gabriel Holodak | 2025-01-20 | 1 | -2/+2 |
| | | | | | | | `:TSInstallSync` relies on the `:system()` command to set `v:shell_error` when an error code is returned during installation. On Windows, the error code was always overwritten by `popd`'s return code. | ||||
| * | fix: node selection at line start that ends injected region | Jaehwang Jung | 2025-01-20 | 1 | -4/+18 |
| | | |||||
| * | fix(inc-selection): handle injections | Jaehwang Jung | 2025-01-20 | 1 | -7/+16 |
| | | | | | | | | | | | | | | | | * Parse injections before starting selection. * Make node_incremental climb up the LanaguageTree step by step. Previously it only considered the root parser and the bottommost parser. Now it works well with document with deeper injections, e.g., ```lua vim.cmd[=[ echo 'hello' 'world!' lua << EOF vim.cmd[[echo 'hello' 'world!']] EOF ]=] ``` | ||||
| * | feat(idris): add parser and queries (#7274) | Serhii Khoma | 2025-01-16 | 1 | -0/+9 |
| | | |||||
| * | feat(ipkg): add parser and queries (#7277) | Serhii Khoma | 2024-12-30 | 1 | -0/+8 |
| | | | | Co-authored-by: ObserverOfTime <chronobserver@disroot.org> | ||||
| * | feat(circom): add parser and queries | Alexandr Martirosyan | 2024-12-06 | 1 | -0/+8 |
| | | |||||
| * | docs(parser): add maintainer for julia | Christian Clason | 2024-11-23 | 1 | -0/+1 |
| | | |||||
| * | bot(lockfile): update fortran, nu, r | nvim-treesitter-bot[bot] | 2024-11-23 | 1 | -1/+1 |
| | | |||||
| * | docs(parser): mark julia as unmaintained | Christian Clason | 2024-11-06 | 1 | -1/+0 |
| | | |||||
| * | feat(runescript): add parser and queries (#7305) | David Lysenko | 2024-11-06 | 1 | -0/+9 |
| | | |||||
| * | feat(nu): add parser and queries (#7267) | Abhishek Singh | 2024-11-05 | 1 | -0/+8 |
| | | |||||
| * | feat: sway programming language | Riley Bruins | 2024-11-04 | 1 | -0/+8 |
| | | |||||
| * | fix(cooklang): apply correct filetype | Riley Bruins | 2024-11-04 | 1 | -0/+1 |
| | | | | | | | `Cooklang` files are recognized as `cook` in vim. This prevents the parser from attaching since it is looking for `cooklang` files, so we have to specify the `filetype` here. | ||||
| * | feat(cylc): add parser and queries (#7225) | Elliot Fontaine | 2024-10-31 | 1 | -0/+8 |
| | | |||||
| * | feat(desktop): desktop parser and queries (#7282) | Omar Valdez | 2024-10-26 | 1 | -0/+8 |
| | | |||||
| * | docs(readme): mark Nvim 0.10 as required | Christian Clason | 2024-10-25 | 1 | -2/+2 |
| | | |||||
| * | fix(predicates): remove upstreamed predicates and directives | Christian Clason | 2024-10-23 | 1 | -74/+0 |
| | | | | | | | | | Problem: Overriding upstreamed predicates replaces optimized versions on Nvim 0.11. Solution: Now that nvim-treesitter requires Nvim 0.10, simply remove the upstreamed predicates and directives. | ||||
| * | feat(xresources): add parser and queries (#7260) | Omar Valdez | 2024-10-20 | 1 | -0/+9 |
| | | |||||
| * | feat(verilog)!: use systemverilog parser and queries (#7170) | henrykvdb | 2024-10-16 | 1 | -10/+3 |
| | | |||||
| * | feat(gren): gren parser and queries (#7237) | Mae Brooks | 2024-10-15 | 1 | -0/+8 |
| | | |||||
| * | Fix(auto_install): Install parser if Filetype already known | Nikolai Devolder | 2024-10-14 | 1 | -6/+10 |
| | | | | | | | | If setup function was called after `FileType` autocommand triggers the installation of parser was not done. This commit checks if filetype is already know before adding the autocommand. | ||||
| * | feat(superhtml): add superhtml parser and queries | Tim Culverhouse | 2024-10-06 | 1 | -0/+12 |
| | | | | | | SuperHTML is a templating language used by the zine static site generator. | ||||
| * | fix(parsers): don't register rmd and quarto for markdown | Christian Clason | 2024-10-01 | 1 | -3/+0 |
| | | |||||
| * | fix(parsers): register explicit filetypes unconditionally (#7202) | Christian Clason | 2024-09-30 | 1 | -8/+7 |
| | | | | Co-authored-by: Riley Bruins <ribru17@hotmail.com> | ||||
| * | feat(ziggy-schema): Add ziggy-schema parser and queries | Tim Culverhouse | 2024-09-30 | 1 | -0/+9 |
| | | | | | Ziggy-schema is the schema definition file format for a ziggy file. | ||||
| * | feat(ziggy): add ziggy parser and queries | Tim Culverhouse | 2024-09-30 | 1 | -0/+9 |
| | | | | | | [Ziggy](https://github.com/kristoff-it/ziggy) is a data serialization format used in the zine static site generator. | ||||
| * | fix(parsers): adapt to upstream change in Nvim 0.11 | Christian Clason | 2024-09-29 | 1 | -6/+9 |
| | | | | | | | In Nvim 0.11, `vim.treesitter.lang.get_lang(filetype)` falls back to `filetype` by default, so filetypes no longer have to be registered for languages with the same name. | ||||
| * | feat(fsharp): add parser and queries (#7166) | Nikolaj Sidorenco | 2024-09-29 | 1 | -0/+9 |
| | | |||||
| * | fix(query): explicitly opt-in to legacy behavior | Christian Clason | 2024-09-04 | 1 | -10/+13 |
| | | |||||
| * | feat(gap): add gap and gaptst parser and queries (#7110) | Reinis Cirpons | 2024-09-01 | 1 | -0/+18 |
| | | |||||
| * | feat(glimmer): add glimmer-javascript and glimmer-typescript (#7064) | NullVoxPopuli | 2024-08-31 | 1 | -1/+21 |
| | | |||||
| * | fix(query): explicitly opt-in to legacy behavior (#7101) | Christian Clason | 2024-08-30 | 1 | -1/+1 |
| | | |||||
| * | feat!: switch upstream Zig parser | Amaan Qureshi | 2024-08-30 | 1 | -2/+2 |
| | | | | | | The new parser is faster, does not lag while editing, correctly parses the entire Zig code base, and is much easier to write queries for. | ||||
| * | feat(php): php 8.4 support (#6741) | Caleb White | 2024-08-18 | 1 | -2/+2 |
| | | | | | | | | | | * chore(php): update maintainers * feat(php): update php rules, highlight imported functions/consts * feat(php): indent inside property hooks * chore: update php and php_only revision | ||||
| * | feat(sflog): add sflog (Salesforce debug log) parser and highlights | Xi Xiao | 2024-08-10 | 1 | -3/+12 |
| | | | | Co-authored-by: xi xiao <tdxiaoxi2@gmail.com> | ||||
| * | fix(install): vim.uv compatibility shim for 0.9 | Steve Vermeulen | 2024-08-09 | 1 | -1/+2 |
| | | |||||
