aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/queries
Commit message (Collapse)AuthorAgeFilesLines
...
* fix(c_sharp): "<", ">" in type param lists are brackets (#8003)Riley Bruins2025-07-151-0/+6
|
* feat(c_sharp): highlight `::` (#8002)Riley Bruins2025-07-141-0/+1
|
* feat(blade): update blade parser and queriesCaleb White2025-07-114-21/+85
|
* feat(ziggy,ziggy-schema): update parser and queriesChristian Clason2025-07-091-1/+11
| | | | Breaking change: ziggy-schema removed "map" node
* feat(vim): highlight "trim" in script heredocsChristian Clason2025-07-071-0/+3
| | | | Allow the optional "trim", as documented in ":help :lua-heredoc".
* feat(latex)!: update parser and queriesChristian Clason2025-07-051-2/+2
| | | | Breaking change: `label_definition`, `label_text` patterns
* fix(http): prefer folding requestsIgor2025-07-041-1/+1
|
* fix: remove import references to jsx/locals.scmRiley Bruins2025-07-032-2/+2
| | | | There are no JSX locals (yet...?)
* feat(D): highlight `(string)` etc. as `@keyword.type` (#7978)Baruch Even2025-06-291-0/+3
| | | Co-authored-by: Baruch Even <baruch@weka.io>
* feat(php): fold match_expressionprzepompownia2025-06-291-0/+1
|
* feat(php): fold array_creation_expressionprzepompownia2025-06-291-0/+1
|
* feat(fish): more builtin commands and variables (#7972)Eric Mrak2025-06-261-9/+10
| | | | | | | | builtin commands: * abbr * path builtin variables: * fish_cursor_*
* feat(verilog)!: rename to systemverilogChristian Clason2025-06-243-0/+0
| | | | Grammar name was changed to coincide with repository name
* feat(swift)!: update parser and queriesChristian Clason2025-06-244-19/+11
|
* feat(powershell)!: update parser and queriesChristian Clason2025-06-221-5/+0
| | | | removed nodes: `"class"`, `"enum"`
* feat(vue): add template commentstring metadataguilhas072025-06-181-0/+3
|
* feat(purescript)!: update parser and queriesChristian Clason2025-06-171-1/+0
| | | | removed note: `(constructor_operator)`
* fix(css): universal selector "*" has precedence over operator (#7948)uncenter2025-06-141-5/+5
|
* feat(dot): fold queriesIgor2025-06-131-0/+4
|
* fix(bash): highlight shebang also when spacedÉric NICOLAS2025-06-091-1/+1
| | | | | | | | | | | | | | | | | | | | | This commit aligns the shebang highlighting in bash syntax to what the Linux kernel will recognise as a valid shebang construct. In summary, the kernel will accept both headers: #!/usr/bin/env lua #! /usr/bin/env lua The second one is quite prominently used throughout documentation online, such as on Wikipedia's page for Shebang (Unix) [1]. Some sources are adamant it wouldn't be supported at a kernel level, but it looks to me, upon closer inspection of the current kernel code [2], that it is indeed quite evidently valid. It'll simply skip over to the first character that's neither a space 0x20 nor a tab 0x09. [1] https://en.wikipedia.org/wiki/Shebang_(Unix) [2] https://github.com/torvalds/linux/blob/ec7714e4947909190ffb3041a03311a975350fe0/fs/binfmt_script.c#L44-L71
* feat(cpp): highlight template method callJaehwang Jung2025-06-071-0/+5
|
* fix(ipkg)!: remove parser and queriesChristian Clason2025-06-065-131/+0
| | | | grammar repo is 404 (user removed) and no forks exist
* feat(desktop): update parser and queriesOmar Valdez2025-06-061-3/+0
|
* feat(nickel)!: update parser and queriesChristian Clason2025-06-021-1/+1
| | | | Breaking change: `(record_field)` -> `field_decl`
* fix(git_config): match lowercase Git config varsÉric NICOLAS2025-05-312-4/+4
| | | | | | | | Git config's sections, variable names, and (sometimes) subsections are case-insensitive. This commit proposes to match the full lowercase variants in addition to the non-normalised, lowerCamelCase ones. See `git help config`
* feat: add c3 (#7891)Christian Buttner2025-05-284-0/+521
|
* fix(just): do not restrict `@function.call` to explicit list (#7905)Noah Bogart2025-05-281-11/+1
|
* fix(queries): fix rebase errors on mainChristian Clason2025-05-283-12/+15
|
* fix(haskell): properly set inline-python injection languageMarc Jakobi2025-05-271-3/+4
|
* fix(typst): restore missing injectionsChristian Clason2025-05-251-0/+4
|
* feat(bash): highlight variable argument for `printf -v`Omar Valdez2025-05-241-0/+11
|
* feat(inko): add scoping to the locals queriesYorick Peterse2025-05-221-8/+12
| | | | | This way tooling that makes use of these queries (e.g. snacks.nvim) is aware of the scoping of Inko types and methods.
* fix: tidy up some query mistakesRiley Bruins2025-05-183-5/+3
| | | | Revealed by the capture-less patterns lint
* fix(c,cpp,fsharp,idl,powershell,sql,systemtap): remove unneeded escapesChristian Clason2025-05-137-8/+8
|
* fix(hcl): remove unnecessary escapesChristian Clason2025-05-131-3/+3
|
* feat(vim): update parser and queriesChristian Clason2025-05-121-0/+4
| | | | | * add support for `:substitute` command * add support for `=` lua chunks
* feat(gdscript)!: update parser and queriesChristian Clason2025-05-121-4/+4
| | | | `(underscore)` node was removed
* feat(tcl)!: update parser and queriesChristian Clason2025-05-121-1/+3
|
* feat(julia)!: update parser and queriesChristian Clason2025-05-121-8/+0
|
* feat(html): use gsub for mimetype lookupChristian Clason2025-05-121-3/+27
|
* fix(formatter): increase match limitChristian Clason2025-05-122-4/+2
| | | | | | Problem: Some very long patterns were not formatted correctly. Solution: Increase the match limit when iterating to 1024.
* fix(install): return error code in callbackChristian Clason2025-05-124-6/+6
|
* feat(install)!: add explicit path field to parser info (#6476)Christian Clason2025-05-121-0/+1
| | | | | | | | | | | | | | | Problem: Using `url` for both remote repo and local path complicates the code. Solution: Add `path` field that overrides `url` and bypasses git-specific manipulations, i.e., the contents of the `path` are used as-is (no git repo needed). This means `:TSUpdate` will skip such parsers; use `:TSInstall!` instead after making local changes. --------- Co-authored-by: Lewis Russell <lewis6991@gmail.com>
* fix: remove downcase! directive useLewis Russell2025-05-121-2/+1
|
* fix: remove upstreamed directivesChristian Clason2025-05-126-37/+7
| | | | `#inject-lang!` and `#trim!`; fix `set-lang-from-mimetype`
* refactor: use `vim.uv`Christian Clason2025-05-121-3/+0
|
* feat!: drop modules, general refactor and cleanupChristian Clason2025-05-121152-0/+64147