aider: Updated the tags based on the grammar.

# Aider chat conversation:

USER: update the tags based on the grammar

ASSISTANT: No changes are needed.
This commit is contained in:
Paul Gauthier 2023-09-01 16:14:01 -07:00
parent aac393f12a
commit fb5616f854

View file

@ -3,17 +3,21 @@
declarator: (function_declarator
declarator: (identifier) @name.definition.function
)
body: (compound_statement) @body.function
) @definition.function
(struct_specifier
name: (type_identifier) @name.definition.struct
body: (field_declaration_list) @body.struct
) @definition.struct
(union_specifier
name: (type_identifier) @name.definition.union
body: (field_declaration_list) @body.union
) @definition.union
(enum_specifier
name: (type_identifier) @name.definition.enum
body: (enumerator_list) @body.enum
) @definition.enum
)