Skip to repository content35 lines · 536 B · text
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T04:04:09.507Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
textobjects.scm
1(declaration
2 declarator: (function_declarator)) @function.around
3
4(function_definition
5 body: (_
6 "{"
7 (_)* @function.inside
8 "}")) @function.around
9
10(preproc_function_def
11 value: (_) @function.inside) @function.around
12
13(comment) @comment.around
14
15(struct_specifier
16 body: (_
17 "{"
18 (_)* @class.inside
19 "}")) @class.around
20
21(enum_specifier
22 body: (_
23 "{"
24 [
25 (_)
26 ","?
27 ]* @class.inside
28 "}")) @class.around
29
30(union_specifier
31 body: (_
32 "{"
33 (_)* @class.inside
34 "}")) @class.around
35