Sam McCall
a8248c50e1
Update tree-sitter-cpp, support injections in tagged rawstrings ( #5457 )
...
The grammar now exposes the delimiter of raw-strings.
We can now inject the inner grammar in cases like:
const char* script = R"js(
alert('hello world!');
)js";
2 years ago
Matthias Wahl
e65f28d41a
Add language support for ponylang ( #5416 )
...
See https://www.ponylang.io
2 years ago
Chickenkeeper
486c3ab0d5
Fix Broken Attribute Highlights ( #5349 )
...
* Update highlights.scm
* Update highlights.scm
* Update themes.md
2 years ago
Michael Davis
b368df5785
Use tree-sitter-ruby for crystal ( #5205 )
2 years ago
Triton171
873434b927
Improve indent queries for python in specific cases ( #5332 )
...
where the tree-sitter completely fails to parse incomplete code.
2 years ago
Dom H
532531c3ca
Add runtime queries for `tfvars` (based on `hcl`) ( #5396 )
2 years ago
Julius de Bruijn
5627c604ef
Update Prisma tree-sitter for view support ( #5417 )
2 years ago
farwyler
1f4d277013
Allow custom preprocessors for 'vue' injections ( #5268 )
2 years ago
Michael Davis
7905086b55
Fix HTML injection within markdown ( #5265 )
...
HTML nodes should be combined injections in the markdown block
grammar. When nodes are together the highlighting works properly but
when there is markdown content between HTML nodes like in a `<details>`
tag, the highlighting of the closing tag breaks since tree-sitter-html
looks for opening and closing tags.
2 years ago
Chickenkeeper
c4263d6a56
Fix & Tweak Rust's Syntax Highlighting ( #5238 )
2 years ago
farwyler
a7146f58f0
Add missing comment injection for nix ( #5208 )
2 years ago
g-s-k
042d03269e
Add support for MATLAB/Octave files ( #5192 )
2 years ago
Jonas Everaert
aecb524e50
Crystal language support ( #4993 )
2 years ago
gavincrawford
012fc12f97
Add Bash indents ( #5149 )
2 years ago
Erasin
436296b76c
Add Mermaid.js for markdown support ( #5147 )
2 years ago
Blaž Hrastnik
bae890d8fa
Update tree-sitter-scheme
2 years ago
Ollie Charles
0e8ea13696
Add Haskell text objects ( #5061 )
2 years ago
Felipe S. S. Schneider
d14de27709
Add support for the BibTeX file format ( #5064 )
2 years ago
Matouš Dzivjak
5781aa0264
feat(highlights): go builtin funcs and types ( #5010 )
...
Add highlight scopes for golang built-in functions and types.
Based on https://pkg.go.dev/builtin .
2 years ago
Blaž Hrastnik
417676953b
Add basic support for common lisp
2 years ago
farwyler
59cfe95776
Add support for single-line comments to scss ( #5003 )
2 years ago
Matouš Dzivjak
d0bc38d6fa
feat(lang): bump tree-sitter-go ( #4969 )
...
Update tree-sitter-go to latest with updated support for generics.
See: 0fa917a702..05900faa3c
for full diff.
2 years ago
Michael Davis
67415e096e
Fix file-types declaration for racket ( #4915 )
...
Both the racket and scheme entries used the rkt file-extension. This
commit removes that entry for scheme and so that the racket entry takes
precedence. We explicitly point to the scheme grammar now and setup
queries that inherit from scheme. This should enable using the racket
language server configuration.
2 years ago
Erik Bünnig
5c213f7de4
fix(grammar): Add `block_comment` and `comment_environment` injection for latex comments ( #4922 )
2 years ago
Chickenkeeper
bf908cc4a1
Update CSS syntax highlighting ( #4882 )
2 years ago
gavincrawford
583c2a5456
Fix Go variable indentation ( #4906 )
2 years ago
Lennard Hofmann
fc811726e0
Update tree-sitter-java and add Java textobjects ( #4886 )
2 years ago
Michael Davis
ee06d4d337
Update tree-sitter-gleam
...
This update includes a handful of fixes, a new binary concatenation
operator (already highlighted by the `binary_operator` rule), and a
new `use` language construct. The nodes are backwards compatible but
this update introduces two new nodes for highlighting: `use` and `<-`.
2 years ago
Michael Davis
cbc72e84d7
Update tree-sitter-heex
...
tree-sitter-heex split out the ending_expression_value from the
partial_expression value which can help with indentation.
2 years ago
Michael Davis
5a1bed2b70
Add parameter highlights to Erlang
...
This doesn't work robustly (within pattern matches). Only regular
bindings are highlighted as parameters. In order to highlight all
parameters even in matches, we would need an arbitrary nesting operator
in queries which doesn't exist yet in tree-sitter.
2 years ago
Michael Davis
452f7d071c
Improve Edoc highlighting within Erlang
...
This highlights edoc within Erlang comments. The trick was to have
the Erlang grammar consume newlines and then give them to EDoc in the
injection to use so that line-wise elements could be parsed accurately.
2 years ago
alois31
26ec1cf39a
Add QML language support ( #4842 )
...
Fixes https://github.com/helix-editor/helix/issues/2771
2 years ago
Sora
420e33a600
Implement simple indents.scm for Elixir ( #4821 )
2 years ago
Chickenkeeper
117239ea45
Fix broken html doctype highlighting ( #4829 )
2 years ago
ath3
598bd8bf11
Update tree-sitter-cmake ( #4809 )
2 years ago
Garrett D'Amore
f843967059
Improvements to Meson syntax. ( #4572 )
...
Co-authored-by: Garrett D'Amore <garrett.damore@weka.io>
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
2 years ago
Sora
506e8caba7
Remove Statement in Zig indentation query ( #4745 )
2 years ago
Jonathan
1233c9a989
Add support for Bicep files ( #4403 )
2 years ago
Alexis (Poliorcetics) Bourget
e232333d4a
fix: Outdated Rust queries after TS update
...
Ref: 3ddebf46e6
2 years ago
Gabriel Dinner-David
7367abd6c6
Update typescript grammar and queries ( #4703 )
...
* fix(grammars): update treesitter grammar and queries
* add override keyword
* Update runtime/queries/typescript/highlights.scm
Co-authored-by: Blaž Hrastnik <blaz@mxxn.io>
2 years ago
Anton Romanov
07d3157273
[rust highlights] fix scoped attribute macro matching ( #4659 )
...
Without this scoped attribute macros are not matched as macros.
Eg
```
#[path::macro]
```
2 years ago
Danillo Melo
188aff059b
Improve Ruby TextObjects ( #4601 )
2 years ago
ChrHorn
4ec2a21c6e
Update Julia grammar, queries ( #4588 )
2 years ago
Yuriy
b156f57618
Add indentation for Python pattern matching
...
Add indentation for `match` and `case`.
2 years ago
Yuriy
e0b034dcd1
Add syntax highlighting for Python pattern matching
...
Add syntax highlighting for `match` and `case` keywords in Python
(https://peps.python.org/pep-0636/ ).
2 years ago
Garrett D'Amore
185236c3a4
Fix D unittest injection query. ( #4562 )
2 years ago
Jonas Everaert
79c7203a38
Added missing keywords to wat (wasm) hightlights ( #4542 )
...
added "if", "then", "else", "block", "loop", "end" and "mut" to the wat highlights.
2 years ago
Sebastian Hoß
9b247b1104
Update SSH client config grammar & highlight queries ( #4538 )
...
Co-authored-by: Sebastian Hoß <seb@hoß.de>
2 years ago
seshotake
ed7ea8c9ba
add highlights for env and ini file formats ( #4536 )
2 years ago
hh9527
9df4358492
Support WIT grammar ( #4525 )
2 years ago