diff options
author | Garrett D'Amore | 2022-11-02 00:44:56 +0000 |
---|---|---|
committer | GitHub | 2022-11-02 00:44:56 +0000 |
commit | 185236c3a40ef89f9978358d02b83f47ca4da0eb (patch) | |
tree | a82e0cfbf8ac769da7b3ec06aa6f6b533b6ec9e2 /runtime | |
parent | c803ef8753bc828c9c68f40878d9467ead50dc0d (diff) |
Fix D unittest injection query. (#4562)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/queries/d/textobjects.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/queries/d/textobjects.scm b/runtime/queries/d/textobjects.scm index 9ca07160..6e9e623a 100644 --- a/runtime/queries/d/textobjects.scm +++ b/runtime/queries/d/textobjects.scm @@ -4,6 +4,6 @@ (class_declaration (aggregate_body) @class.inside) @class.around (interface_declaration (aggregate_body) @class.inside) @class.around (struct_declaration (aggregate_body) @class.inside) @class.around -(unittest_declaration (block_statement) @test.insid) @test.around +(unittest_declaration (block_statement) @test.inside) @test.around (parameter) @parameter.inside -(template_parameter) @parameter.inside
\ No newline at end of file +(template_parameter) @parameter.inside |