summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2026-03-03 15:25:11 -0500
committerDax Raad <[email protected]>2026-03-03 15:25:11 -0500
commitc4ffd93caa864854602f200c5d894fb83bd259ca (patch)
tree89ffb32f374d009728ab6935b9621b2eb25c413b
parentc78e7e1a286968369b6521f4d2a3d78d35659b7e (diff)
downloadopencode-c4ffd93caa864854602f200c5d894fb83bd259ca.tar.gz
opencode-c4ffd93caa864854602f200c5d894fb83bd259ca.zip
tui: replace curved arrow with straight arrow for better terminal compatibility
-rw-r--r--packages/opencode/src/cli/cmd/tui/routes/session/index.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx
index 26b263195..e2747ad3b 100644
--- a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx
+++ b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx
@@ -1979,8 +1979,8 @@ function Task(props: ToolProps<typeof TaskTool>) {
if (isRunning() && tools().length > 0) {
// content[0] += ` · ${tools().length} toolcalls`
- if (current()) content.push(`⤷ ${Locale.titlecase(current()!.tool)} ${(current()!.state as any).title}`)
- else content.push(`⤷ ${tools().length} toolcalls`)
+ if (current()) content.push(`↳ ${Locale.titlecase(current()!.tool)} ${(current()!.state as any).title}`)
+ else content.push(`↳ ${tools().length} toolcalls`)
}
if (props.part.state.status === "completed") {