From 0627e2cbd0f1a62fd1d5d5cb2bee74f84524a960 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 14 Aug 2023 04:06:25 -0400 Subject: [PATCH] fix formatting in the rust textobject query file looks like two lines were unintentionally joined - it doesn't appear to affect the functionality, but it's confusing to read --- runtime/queries/rust/textobjects.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/runtime/queries/rust/textobjects.scm b/runtime/queries/rust/textobjects.scm index 496f752ecd39..837f981e7de0 100644 --- a/runtime/queries/rust/textobjects.scm +++ b/runtime/queries/rust/textobjects.scm @@ -1,5 +1,8 @@ (function_item - body: (_) @function.inside) @function.around(closure_expression body: (_) @function.inside) @function.around + body: (_) @function.inside) @function.around + +(closure_expression + body: (_) @function.inside) @function.around (struct_item body: (_) @class.inside) @class.around