summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMikhail Wahib <[email protected]>2025-11-04 02:29:23 +0200
committerGitHub <[email protected]>2025-11-03 18:29:23 -0600
commit1cf1e88b529587b373353560f4544815f3cc2059 (patch)
tree09706af2e46b5fa88118c87043d27fa35b4af22f
parentd06afd87e5a0325730b11478eb49af4ced12608a (diff)
downloadopencode-1cf1e88b529587b373353560f4544815f3cc2059.tar.gz
opencode-1cf1e88b529587b373353560f4544815f3cc2059.zip
fix: print the modified keybind for command_list (#3859)
-rw-r--r--packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx2
1 files changed, 1 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 676610c7a..4078bf6fd 100644
--- a/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx
+++ b/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx
@@ -712,7 +712,7 @@ export function Prompt(props: PromptProps) {
<Match when={props.hint}>{props.hint!}</Match>
<Match when={true}>
<text fg={theme.text}>
- ctrl+p <span style={{ fg: theme.textMuted }}>commands</span>
+ {keybind.print("command_list")} <span style={{ fg: theme.textMuted }}>commands</span>
</text>
</Match>
</Switch>