diff options
| author | Aiden Cline <[email protected]> | 2026-01-12 13:35:07 -0600 |
|---|---|---|
| committer | Aiden Cline <[email protected]> | 2026-01-12 13:35:07 -0600 |
| commit | cd56845dce07d418bed853cb16ebeea82107b79f (patch) | |
| tree | 286dc32349b3a7a44e57f8be63f8c1969f9fc830 /packages | |
| parent | 1c24dd02a61d93382e5fc5582fb5d029e2cf46c1 (diff) | |
| download | opencode-cd56845dce07d418bed853cb16ebeea82107b79f.tar.gz opencode-cd56845dce07d418bed853cb16ebeea82107b79f.zip | |
tui: add hint for variants toggle
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx b/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx index 644ac2622..d5e0a0aa2 100644 --- a/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx +++ b/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx @@ -1062,7 +1062,10 @@ export function Prompt(props: PromptProps) { <Switch> <Match when={store.mode === "normal"}> <text fg={theme.text}> - {keybind.print("agent_cycle")} <span style={{ fg: theme.textMuted }}>switch agent</span> + {keybind.print("variant_cycle")} <span style={{ fg: theme.textMuted }}>variants</span> + </text> + <text fg={theme.text}> + {keybind.print("agent_cycle")} <span style={{ fg: theme.textMuted }}>agents</span> </text> <text fg={theme.text}> {keybind.print("command_list")} <span style={{ fg: theme.textMuted }}>commands</span> |
