From c4ffd93caa864854602f200c5d894fb83bd259ca Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Tue, 3 Mar 2026 15:25:11 -0500 Subject: [PATCH] tui: replace curved arrow with straight arrow for better terminal compatibility --- packages/opencode/src/cli/cmd/tui/routes/session/index.tsx | 4 ++-- 1 file 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) { 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") {