Skip to repository content47 lines · 642 B · text
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T03:01:28.823Z 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
indents.scm
1[
2 (field_expression)
3 (assignment_expression)
4 (init_declarator)
5 (if_statement)
6 (for_statement)
7 (while_statement)
8 (do_statement)
9 (else_clause)
10] @indent
11
12(expression_statement
13 (_) @indent
14 ";" @end)
15
16(_
17 "{"
18 "}" @end) @indent
19
20(compound_statement
21 (case_statement
22 ":" @start)
23 "}" @end) @indent
24
25(compound_statement
26 (case_statement)
27 (case_statement) @outdent)
28
29(_
30 "("
31 ")" @end) @indent
32
33((comment) @indent
34 (#match? @indent "^/\\*"))
35
36(if_statement) @start.if
37
38(for_statement) @start.for
39
40(while_statement) @start.while
41
42(do_statement) @start.do
43
44(switch_statement) @start.switch
45
46(else_clause) @start.else
47