mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Fix rust text objects (#3590)
This commit is contained in:
parent
e066782782
commit
db18206795
1 changed files with 12 additions and 50 deletions
|
@ -1,58 +1,20 @@
|
||||||
(
|
(function_item
|
||||||
[
|
body: (_) @function.inside) @function.around(closure_expression body: (_) @function.inside) @function.around
|
||||||
(attribute_item)+
|
|
||||||
(line_comment)+
|
|
||||||
]*
|
|
||||||
.
|
|
||||||
(function_item
|
|
||||||
body: (_) @function.inside)) @function.around
|
|
||||||
|
|
||||||
(closure_expression body: (_) @function.inside) @function.around
|
(struct_item
|
||||||
|
body: (_) @class.inside) @class.around
|
||||||
|
|
||||||
(
|
(enum_item
|
||||||
[
|
body: (_) @class.inside) @class.around
|
||||||
(attribute_item)+
|
|
||||||
(line_comment)+
|
|
||||||
]*
|
|
||||||
.
|
|
||||||
(struct_item
|
|
||||||
body: (_) @class.inside)) @class.around
|
|
||||||
|
|
||||||
(
|
(union_item
|
||||||
[
|
body: (_) @class.inside) @class.around
|
||||||
(attribute_item)+
|
|
||||||
(line_comment)+
|
|
||||||
]*
|
|
||||||
.
|
|
||||||
(enum_item
|
|
||||||
body: (_) @class.inside)) @class.around
|
|
||||||
|
|
||||||
(
|
(trait_item
|
||||||
[
|
body: (_) @class.inside) @class.around
|
||||||
(attribute_item)+
|
|
||||||
(line_comment)+
|
|
||||||
]*
|
|
||||||
.
|
|
||||||
(union_item
|
|
||||||
body: (_) @class.inside)) @class.around
|
|
||||||
|
|
||||||
(
|
(impl_item
|
||||||
[
|
body: (_) @class.inside) @class.around
|
||||||
(attribute_item)+
|
|
||||||
(line_comment)+
|
|
||||||
]*
|
|
||||||
.
|
|
||||||
(trait_item
|
|
||||||
body: (_) @class.inside)) @class.around
|
|
||||||
|
|
||||||
(
|
|
||||||
[
|
|
||||||
(attribute_item)+
|
|
||||||
(line_comment)+
|
|
||||||
]*
|
|
||||||
.
|
|
||||||
(impl_item
|
|
||||||
body: (_) @class.inside)) @class.around
|
|
||||||
|
|
||||||
(parameters
|
(parameters
|
||||||
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue