From 07025ef5b9793f2ae7d690cf8853cf88a02fba48 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Tue, 3 Mar 2026 14:36:08 -0500 Subject: [PATCH] tui: use arrow indicator to clearly show active tool execution in session view --- 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 73ceccc553..e12b026484 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") {