diff options
| author | Jay V <[email protected]> | 2025-08-26 13:17:40 -0400 |
|---|---|---|
| committer | Jay V <[email protected]> | 2025-08-26 16:10:53 -0400 |
| commit | f4b69df7a3d341a889e30580aeb0d08a10bbce29 (patch) | |
| tree | c83b780e52cd095581b7a0bb6408d47c1243bd2a | |
| parent | 83b9b67c4cc369fb2bc2b24625925059c1a82485 (diff) | |
| download | opencode-f4b69df7a3d341a889e30580aeb0d08a10bbce29.tar.gz opencode-f4b69df7a3d341a889e30580aeb0d08a10bbce29.zip | |
docs: updating config schema
| -rw-r--r-- | packages/opencode/src/config/config.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/opencode/src/config/config.ts b/packages/opencode/src/config/config.ts index f707d35ff..2041ac35f 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -339,7 +339,10 @@ export namespace Config { theme: z.string().optional().describe("Theme name to use for the interface"), keybinds: Keybinds.optional().describe("Custom keybind configurations"), tui: TUI.optional().describe("TUI specific settings"), - command: z.record(z.string(), Command).optional(), + command: z + .record(z.string(), Command) + .optional() + .describe("Command configuration, see https://opencode.ai/docs/commands"), plugin: z.string().array().optional(), snapshot: z.boolean().optional(), share: z |
