diff options
| author | frankdierolf <[email protected]> | 2025-11-04 15:52:49 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-11-04 08:52:49 -0600 |
| commit | b41e573886a42b788dc8821280ee8bad42c588e7 (patch) | |
| tree | 7d6c9f44caf9c0da69d655a208fe8c96f37eabda | |
| parent | 737ddab300f267e0e81c136d63e541d2a256d0df (diff) | |
| download | opencode-b41e573886a42b788dc8821280ee8bad42c588e7.tar.gz opencode-b41e573886a42b788dc8821280ee8bad42c588e7.zip | |
fix: correct history_next keybinding description (#3891)
| -rw-r--r-- | packages/opencode/src/config/config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/opencode/src/config/config.ts b/packages/opencode/src/config/config.ts index de69dc0f2..63a956fb3 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -473,7 +473,7 @@ export namespace Config { .default("shift+return,ctrl+j") .describe("Insert newline in input"), history_previous: z.string().optional().default("up").describe("Previous history item"), - history_next: z.string().optional().default("down").describe("Previous history item"), + history_next: z.string().optional().default("down").describe("Next history item"), session_child_cycle: z .string() .optional() |
