add test textobjects queries for erlang,gleam,go,python,rust

This commit is contained in:
Michael Davis 2022-06-19 21:36:33 -05:00
parent 67f6c85792
commit 9f676dab57
5 changed files with 37 additions and 0 deletions

View file

@ -77,3 +77,17 @@
(line_comment)+ @comment.around
(block_comment) @comment.around
(; #[test]
(attribute_item
(meta_item
(identifier) @_test_attribute))
; allow other attributes like #[should_panic] and comments
[
(attribute_item)
(line_comment)
]*
; the test function
(function_item
body: (_) @test.inside) @test.around
(#eq? @_test_attribute "test"))