From 8385cc2f44f5ea28b64ff0695df94913a07169a7 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Wed, 10 Jun 2026 05:03:26 +0000 Subject: [PATCH] fix(tui): label worktree copy as session location --- packages/tui/src/app.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/tui/src/app.tsx b/packages/tui/src/app.tsx index edf9085ae8..c46fa0b028 100644 --- a/packages/tui/src/app.tsx +++ b/packages/tui/src/app.tsx @@ -579,15 +579,15 @@ function App(props: { onSnapshot?: () => Promise; pluginHost: TuiPlugi }, { name: "workspace.copy_path", - title: "Copy worktree path", - category: "Workspace", + title: "Copy session location", + category: "Session", enabled: () => currentWorktreeWorkspace() !== undefined, run: async () => { const workspace = currentWorktreeWorkspace() if (!workspace?.directory) return await clipboard .write?.(workspace.directory) - .then(() => toast.show({ message: "Copied worktree path", variant: "info" })) + .then(() => toast.show({ message: "Copied session location", variant: "info" })) .catch(toast.error) dialog.clear() },