Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T03:53:26.086Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

textobjects.scm

45 lines · 657 B · text
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
36(class_specifier
37  body: (_
38    "{"
39    [
40      (_)
41      ":"?
42      ";"?
43    ]* @class.inside
44    "}"?)) @class.around
45
Served at tenant.openagents/omega Member data and write actions are omitted.