aboutsummaryrefslogtreecommitdiffstats
path: root/lua
Commit message (Collapse)AuthorAgeFilesLines
* feat(brightscript): brightscript parser and queries (#7780)AJ Delcimmuto2025-04-131-0/+8
|
* feat(caddy): add parser and queries (#7588)Vladimir Levin2025-03-231-0/+8
| | | | | --------- Co-authored-by: Christian Clason <c.clason@uni-graz.at>
* feat(javadoc): add parser and queries (#7749)Robert Muir2025-03-231-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 White2025-03-121-0/+8
|
* feat(tera): add parser and queriesuncenter2025-03-091-0/+8
|
* feat(kdl): parser and queries (#7657)Bert Baron2025-02-271-0/+8
|
* fix(earthfile): adapt to new default branch (with external scanner)Christian Clason2025-02-191-1/+1
|
* feat(parsers)!: drop orgChristian Clason2025-02-161-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 sourceAmaan Qureshi2025-02-081-0/+1
|
* feat(jinja): add parser and queries (#7573)loongtao.zhang2025-02-081-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)simonvic2025-02-081-0/+8
|
* feat(razor): add parser and queries (#7545)Tristan Knight2025-02-011-0/+8
|
* feat(slim): add parser and queries (#7425)Théo Reichel2025-01-211-0/+8
|
* fix(install): use std=c11Gabriel Holodak2025-01-201-0/+3
|
* fix(install): preserve command return code on WindowsGabriel Holodak2025-01-201-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 regionJaehwang Jung2025-01-201-4/+18
|
* fix(inc-selection): handle injectionsJaehwang Jung2025-01-201-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 Khoma2025-01-161-0/+9
|
* feat(ipkg): add parser and queries (#7277)Serhii Khoma2024-12-301-0/+8
| | | Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
* feat(circom): add parser and queriesAlexandr Martirosyan2024-12-061-0/+8
|
* docs(parser): add maintainer for juliaChristian Clason2024-11-231-0/+1
|
* bot(lockfile): update fortran, nu, rnvim-treesitter-bot[bot]2024-11-231-1/+1
|
* docs(parser): mark julia as unmaintainedChristian Clason2024-11-061-1/+0
|
* feat(runescript): add parser and queries (#7305)David Lysenko2024-11-061-0/+9
|
* feat(nu): add parser and queries (#7267)Abhishek Singh2024-11-051-0/+8
|
* feat: sway programming languageRiley Bruins2024-11-041-0/+8
|
* fix(cooklang): apply correct filetypeRiley Bruins2024-11-041-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 Fontaine2024-10-311-0/+8
|
* feat(desktop): desktop parser and queries (#7282)Omar Valdez2024-10-261-0/+8
|
* docs(readme): mark Nvim 0.10 as requiredChristian Clason2024-10-251-2/+2
|
* fix(predicates): remove upstreamed predicates and directivesChristian Clason2024-10-231-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 Valdez2024-10-201-0/+9
|
* feat(verilog)!: use systemverilog parser and queries (#7170)henrykvdb2024-10-161-10/+3
|
* feat(gren): gren parser and queries (#7237)Mae Brooks2024-10-151-0/+8
|
* Fix(auto_install): Install parser if Filetype already knownNikolai Devolder2024-10-141-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 queriesTim Culverhouse2024-10-061-0/+12
| | | | | SuperHTML is a templating language used by the zine static site generator.
* fix(parsers): don't register rmd and quarto for markdownChristian Clason2024-10-011-3/+0
|
* fix(parsers): register explicit filetypes unconditionally (#7202)Christian Clason2024-09-301-8/+7
| | | Co-authored-by: Riley Bruins <ribru17@hotmail.com>
* feat(ziggy-schema): Add ziggy-schema parser and queriesTim Culverhouse2024-09-301-0/+9
| | | | Ziggy-schema is the schema definition file format for a ziggy file.
* feat(ziggy): add ziggy parser and queriesTim Culverhouse2024-09-301-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.11Christian Clason2024-09-291-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 Sidorenco2024-09-291-0/+9
|
* fix(query): explicitly opt-in to legacy behaviorChristian Clason2024-09-041-10/+13
|
* feat(gap): add gap and gaptst parser and queries (#7110)Reinis Cirpons2024-09-011-0/+18
|
* feat(glimmer): add glimmer-javascript and glimmer-typescript (#7064)NullVoxPopuli2024-08-311-1/+21
|
* fix(query): explicitly opt-in to legacy behavior (#7101)Christian Clason2024-08-301-1/+1
|
* feat!: switch upstream Zig parserAmaan Qureshi2024-08-301-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 White2024-08-181-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 highlightsXi Xiao2024-08-101-3/+12
| | | Co-authored-by: xi xiao <tdxiaoxi2@gmail.com>
* fix(install): vim.uv compatibility shim for 0.9Steve Vermeulen2024-08-091-1/+2
|