Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T05:18:50.511Z 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

config.toml

22 lines · 1.0 KB · toml
1name = "C"
2grammar = "c"
3path_suffixes = ["c"]
4line_comments = ["// "]
5decrease_indent_patterns = [
6  { pattern = "^\\s*\\{.*\\}?\\s*$", valid_after = ["if", "for", "while", "do", "switch", "else"] },
7  { pattern = "^\\s*else\\b", valid_after = ["if"] }
8]
9autoclose_before = ";:.,=}])>"
10brackets = [
11    { start = "{", end = "}", close = true, newline = true },
12    { start = "[", end = "]", close = true, newline = true },
13    { start = "(", end = ")", close = true, newline = true },
14    { start = "\"", end = "\"", close = true, newline = false, not_in = ["string"] },
15    { start = "`", end = "`", close = false, newline = false, not_in = ["string"] },
16    { start = "'", end = "'", close = true, newline = false, not_in = ["string", "comment"] },
17    { start = "/*", end = " */", close = true, newline = false, not_in = ["string", "comment"] },
18]
19debuggers = ["CodeLLDB", "GDB"]
20block_comment = { start = "/*", prefix = "", end = "*/", tab_size = 1 }
21documentation_comment = { start = "/*", prefix = "* ", end = "*/", tab_size = 1 }
22
Served at tenant.openagents/omega Member data and write actions are omitted.