summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorImanol Maiztegui <[email protected]>2026-02-16 15:08:04 +0100
committerGitHub <[email protected]>2026-02-16 09:08:04 -0500
commitbb30e06855fb979b5fd765796a6b7428b9177b91 (patch)
treeb9dc1be55b4ce64010232b9e8d1a5b00e3ebe943
parentb055f973dfd66965d998216db67df8534957e5e8 (diff)
downloadopencode-bb30e06855fb979b5fd765796a6b7428b9177b91.tar.gz
opencode-bb30e06855fb979b5fd765796a6b7428b9177b91.zip
fix (tui): Inaccurate tips (#13845)
-rw-r--r--packages/opencode/src/cli/cmd/tui/component/tips.tsx5
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/opencode/src/cli/cmd/tui/component/tips.tsx b/packages/opencode/src/cli/cmd/tui/component/tips.tsx
index 7870ab2ea..d0a7e5b44 100644
--- a/packages/opencode/src/cli/cmd/tui/component/tips.tsx
+++ b/packages/opencode/src/cli/cmd/tui/component/tips.tsx
@@ -2,7 +2,7 @@ import { createMemo, createSignal, For } from "solid-js"
import { DEFAULT_THEMES, useTheme } from "@tui/context/theme"
const themeCount = Object.keys(DEFAULT_THEMES).length
-const themeTip = `Use {highlight}/theme{/highlight} or {highlight}Ctrl+X T{/highlight} to switch between ${themeCount} built-in themes`
+const themeTip = `Use {highlight}/themes{/highlight} or {highlight}Ctrl+X T{/highlight} to switch between ${themeCount} built-in themes`
type TipPart = { text: string; highlight: boolean }
@@ -126,7 +126,7 @@ const TIPS = [
"Use {highlight}{file:path}{/highlight} to include file contents in config values",
"Use {highlight}instructions{/highlight} in config to load additional rules files",
"Set agent {highlight}temperature{/highlight} from 0.0 (focused) to 1.0 (creative)",
- "Configure {highlight}maxSteps{/highlight} to limit agentic iterations per request",
+ "Configure {highlight}steps{/highlight} to limit agentic iterations per request",
'Set {highlight}"tools": {"bash": false}{/highlight} to disable specific tools',
'Set {highlight}"mcp_*": false{/highlight} to disable all tools from an MCP server',
"Override global tool settings per agent configuration",
@@ -147,7 +147,6 @@ const TIPS = [
"Commit your project's {highlight}AGENTS.md{/highlight} file to Git for team sharing",
"Use {highlight}/review{/highlight} to review uncommitted changes, branches, or PRs",
"Run {highlight}/help{/highlight} or {highlight}Ctrl+X H{/highlight} to show the help dialog",
- "Use {highlight}/details{/highlight} to toggle tool execution details visibility",
"Use {highlight}/rename{/highlight} to rename the current session",
"Press {highlight}Ctrl+Z{/highlight} to suspend the terminal and return to your shell",
]