Commit graph

2524 commits

Author SHA1 Message Date
Jannik Buhr
f7edd3f5f6
fix(markdown): conceal nbsp entity as space (#6778) 2024-06-17 11:04:00 +02:00
Riley Bruins
4d112977c7 feat(corn): more highlights, comment injections 2024-06-15 13:04:52 -04:00
Riley Bruins
c911f19d91 feat(scala): add some missing highlights 2024-06-15 13:03:22 -04:00
Christian Clason
47994d7e89 feat(roc): switch to active upstream 2024-06-15 13:57:36 +02:00
Christian Clason
921763b23d feat(hyprlang): update parser and queries 2024-06-15 13:38:40 +02:00
Riley Bruins
9d68e876cc feat: more comment injections 2024-06-15 10:40:34 +02:00
Riley Bruins
bb0eb73014 fix(markdown): capture entire heading line 2024-06-14 08:35:26 +02:00
Riley Bruins
e5af2d7fdc
fix(gitcommit): correct the file path capture (#6765) 2024-06-14 14:07:43 +09:00
Oliver Thomas
cdc613c630 feat(snakemake): add rule_inheritance to folds 2024-06-13 15:12:19 -04:00
Charles Chiu
26171d8f10 chore: clean duplicate node 2024-06-12 10:25:02 +02:00
Omar Valdez
9a7ad2ff7a
feat(htmldjango): highlight keyword arguments for tags (#6660) 2024-06-10 19:07:48 -07:00
Colin Bruins
eb59a3df50
feat(swift): highlight shebang lines 2024-06-10 13:05:10 -04:00
Riley Bruins
94f9a46b37
feat(rust): fold block expressions (#6754) 2024-06-10 09:44:00 -07:00
Johannes R. L. Dickenson
3b5704440f
fix(commonlisp): correctly highlight quotes (#6565) 2024-06-10 08:15:41 -07:00
Omar Valdez
da7ea8f335 feat(markdown_inline): No spell for emails and HTML entities 2024-06-10 08:38:59 +02:00
Caleb White
9ebc589329 fix(php): remove recursive member_call_expression indent branch 2024-06-09 10:09:43 +02:00
nvim-treesitter-bot[bot]
fc9ee79f64 bot(lockfile): update cmake, elixir, pymanifest, requirements, sql 2024-06-06 07:32:22 +00:00
Christian Clason
69e41a2c14 feat(vimdoc): update parser and queries 2024-06-04 22:14:45 +02:00
seanbreckenridge
5a8e9644c4
feat(jq): update builtin functions (#6726) 2024-06-04 12:02:35 +02:00
Arstoien
512e2122e0
feat: add ralph (#6675)
https://github.com/alephium/tree-sitter-ralph
2024-06-04 09:49:26 +02:00
nvim-treesitter-bot[bot]
121bf634fe bot(lockfile): update arduino, earthfile, koto, rego, slint, sql, teal, typespec 2024-06-04 07:47:01 +00:00
Christian Clason
a80fe081b4 feat(predicates)!: rename has-type to kind-eq to align with Helix
No point in having a different name for the same predicate.
2024-06-02 12:07:58 +02:00
Riley Bruins
f9773e4a5e
test: fix tests broken after 0.10 update (#6714) 2024-06-01 12:33:56 +09:00
player01osu
f770df9c8c fix(odin): highlight types with underscores 2024-05-30 22:25:35 -04:00
Christian Clason
5aadae3f54 fix(koto): update parser and queries 2024-05-29 09:17:04 +02:00
Amaan Qureshi
d551bc70d5
fix(cpp): update parser and queries (#6687) 2024-05-26 12:00:26 +02:00
Christian Clason
ba149fa3b1 fix(solidity): re-enable unbroken operators 2024-05-26 11:59:56 +02:00
Amaan Qureshi
488e39a8f1 feat(query): adapt to upstream changes 2024-05-26 00:24:03 +02:00
Bruno BELANYI
298a9dd4f8
feat(bp): add support for Android Blueprint (#6626) 2024-05-23 17:30:26 +02:00
Amaan Qureshi
14db0433e1 feat(luau): update queries from upstream 2024-05-21 22:46:38 -04:00
Omar Valdez
7add411eba
feat(bash): Highlight declaration and unset command parameters (#6634) 2024-05-22 11:03:22 +09:00
DragonBillow
d184407e33
feat(queries): update idl hightlight (#6625)
Signed-off-by: DragonBillow <DragonBillow@outlook.com>
2024-05-20 11:47:12 +09:00
Hilmar Wiegand
c26cfc75bc feat(typespec): add support for typespec 2024-05-14 19:38:17 +02:00
Riley Bruins
3aa2e2f374 feat(diff): more comprehensive highlights 2024-05-14 08:27:46 +02:00
Tomasz N
cd626dc48e
feat(php): indent after default_statement 2024-05-14 00:07:42 -04:00
Riley Bruins
14cd8c5db1 feat(slint): highlight enum members as constants 2024-05-14 00:05:51 -04:00
Caleb White
6f54846f2b feat(php): add highlights for scoped_property_access 2024-05-14 00:05:03 -04:00
Riley Bruins
925490e34d feat(zig): misc improvements 2024-05-14 00:04:28 -04:00
Riley Bruins
d5a1c2b0c8 feat: standardize and document export keywords
Many export keywords are captured as `@keyword.import`. This commit
makes it so they are all captured like that, and mentions it in the
documentation.
2024-05-13 09:16:31 +02:00
Christian Clason
c4f65272a9 fix(solidity): disable broken operators 2024-05-12 08:10:03 +00:00
Amaan Qureshi
6587d8e694 feat(c_sharp): update parser & queries 2024-05-11 15:26:30 -04:00
Riley Bruins
707b0dcf76 feat(query): pattern injections for new predicates 2024-05-09 11:11:40 +02:00
Yorick Peterse
9e1cda4e71 fix(inko): indent call nodes
This ensures that when you add a new call line in the middle of a call
chain, the line is indented like so:

    foo
      .bar
      .new_line_here
      .baz

Instead of it being indented like so:

    foo
      .bar
    .new_line_here
      .baz
2024-05-09 00:33:22 -04:00
Riley Bruins
1be5aa99e3 feat(rust): underscore match arms, parameters 2024-05-08 08:34:42 -04:00
Laytan Laats
acefffae27 feat(odin): more lenient towards different function naming convention
PR originally made and merged upstream here: https://github.com/tree-sitter-grammars/tree-sitter-odin/pull/15
2024-05-07 15:11:49 -04:00
Ananda Umamil
db03443582
fix(ecma): template string injections (#6590) 2024-05-07 10:14:15 -07:00
Marc Jakobi
da0efd7398
fix(haskell): update queries and tests for rewritten parser (#6580) 2024-05-07 07:27:44 +00:00
Omar Valdez
fc7657a071
feat(c): inject printf in concatenated strings 2024-05-05 23:16:26 -04:00
Riley Bruins
4b70dde727 feat(lalrpop): highlight touchups, folds 2024-05-06 00:34:10 +02:00
Christian Clason
4e21361e15 fix(php): update parser and queries 2024-05-04 10:33:10 +02:00