mirror of
https://github.com/helix-editor/helix
synced 2026-08-05 14:42:57 +02:00
* feat(queries/r): update grammar repo to latest commit updates the commit in the languages.toml file to the latest one upstream and fixes and adjusts the queris to the changes. * feat(tags/r): add tags queries * feat(textobjects/r): add textobjects queries for r * feat(rainbows/r): add rainbows queries for r * chore: cargo xtask docgen
17 lines
332 B
Scheme
17 lines
332 B
Scheme
; Comments
|
|
|
|
(comment) @comment.inside
|
|
(comment)+ @comment.around
|
|
|
|
; Functions
|
|
|
|
(function_definition body: (_) @function.inside) @function.around
|
|
|
|
; Parameters
|
|
|
|
(parameters
|
|
((_) @parameter.inside . (comma)? @parameter.around) @parameter.around)
|
|
|
|
(arguments
|
|
((_) @parameter.inside . (comma)? @parameter.around) @parameter.around)
|