From 37fdbe7fa65b250b70fecbbcbe6895de41d9656c Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Tue, 3 Mar 2026 14:12:27 -0500 Subject: [PATCH] =?UTF-8?q?tui:=20use=20cleaner=20=E2=94=94=20character=20?= =?UTF-8?q?for=20task=20indicators?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaces the ⤷ arrow with a cleaner └ character when displaying running tool calls in task output, improving visual clarity in the session interface. --- 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 7103bec2d3..22f5f8a65c 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(`⤷ Running...`) + if (current()) content.push(`└ ${Locale.titlecase(current()!.tool)} ${(current()!.state as any).title}`) + else content.push(`└ Running...`) } if (props.part.state.status === "completed") {