
Co-Authored-By: Max <max@zed.dev> Release Notes: - vim: Added motions `[[`, `[]`, `]]`, `][` for navigating by section, `[m`, `]m`, `[M`, `]M` for navigating by method, and `[*`, `]*`, `[/`, `]/` for comments. These currently only work for languages built in to Zed, as they are powered by new tree-sitter queries. - vim: Added new text objects: `ic`, `ac` for inside/around classes, `if`,`af` for functions/methods, and `g c` for comments. These currently only work for languages built in to Zed, as they are powered by new tree-sitter queries. --------- Co-authored-by: Max <max@zed.dev>
25 lines
515 B
Scheme
25 lines
515 B
Scheme
(function_declaration
|
|
body: (_
|
|
"{"
|
|
(_)* @function.inside
|
|
"}")) @function.around
|
|
|
|
(method_declaration
|
|
body: (_
|
|
"{"
|
|
(_)* @function.inside
|
|
"}")) @function.around
|
|
|
|
(type_declaration
|
|
(type_spec (struct_type (field_declaration_list (
|
|
"{"
|
|
(_)* @class.inside
|
|
"}")?)))) @class.around
|
|
|
|
(type_declaration
|
|
(type_spec (interface_type
|
|
(_)* @class.inside))) @class.around
|
|
|
|
(type_declaration) @class.around
|
|
|
|
(comment)+ @comment.around
|